8f982278d2
* add multimodule * re-package modules
17 lines
355 B
Go
17 lines
355 B
Go
package rest
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type StateResponse struct {
|
|
ID uuid.UUID `json:"id"`
|
|
Turn uint `json:"turn"`
|
|
Stage uint `json:"stage"`
|
|
Players []PlayerState `json:"player"`
|
|
}
|
|
|
|
type PlayerState struct {
|
|
ID uuid.UUID `json:"id"`
|
|
Name string `json:"name"`
|
|
Extinct bool `json:"extinct"`
|
|
}
|