package player import "battlecamp-go-server/board" type Player struct { Id string `json:"id"` Color string `json:"color"` Type Type `json:"type"` Pos board.Coordinate `json:"pos"` } type Type int const ( TypeDefault Type = 1 )