fix: format all Go files with gofmt
All checks were successful
CI / lint (push) Successful in 9m54s
CI / test (push) Successful in 10m19s
CI / build (push) Successful in 9m58s
CI / docker (push) Has been skipped

- Fix alignment in struct fields (sessionProfileResponse, textureInfo, Handler)
- Align struct field values in internal/templates/templates.go, internal/api/api.go
This commit is contained in:
2026-05-30 20:00:54 +03:00
parent 8d1f956a8b
commit 4efcc770ac
8 changed files with 42 additions and 42 deletions

View File

@@ -122,8 +122,8 @@ type textureInfo struct {
// Mojang session server profile response (for game client).
type sessionProfileResponse struct {
ID string `json:"id"`
Name string `json:"name"`
ID string `json:"id"`
Name string `json:"name"`
Props []sessionProfileProp `json:"properties"`
}