Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Board ¶
type Board struct {
OwnerID string `json:"ownerID"`
Code string `json:"code"`
Bingo bool `json:"bingo"`
Boxes [][]Box `json:"boxes"`
}
func (*Board) CheckBingo ¶
func (board *Board) CheckBingo()
type Box ¶
type Box struct {
Content string `json:"content"`
Checked bool `json:"checked"`
Coordinates Coordinates `json:"coordinates"`
}
type Coordinates ¶
Click to show internal directories.
Click to hide internal directories.