7 lines
100 B
Go
7 lines
100 B
Go
package game
|
|
|
|
type Game struct {
|
|
Id string `json:"id"`
|
|
Players []string `json:"players"`
|
|
}
|