feat: game order api methods

This commit is contained in:
Ilia Denisov
2026-05-09 10:36:44 +02:00
parent f2a7f2b515
commit 2a1e80053a
17 changed files with 166 additions and 75 deletions
+3 -3
View File
@@ -57,7 +57,7 @@ type GameState struct {
}
type GameData struct {
Turn uint `json:"turn"`
Report report.Report `json:"report"`
Order *order.Order `json:"order,omitempty"`
Turn uint `json:"turn"`
Report report.Report `json:"report"`
Order *order.UserGamesOrder `json:"order,omitempty"`
}