12 lines
194 B
Go
12 lines
194 B
Go
package api
|
|
|
|
type Coordinate struct {
|
|
Col int `json:"col"`
|
|
Row int `json:"row"`
|
|
}
|
|
|
|
type Move struct {
|
|
StartSquare Coordinate `json:"startSquare"`
|
|
EndSquare Coordinate `json:"endSquare"`
|
|
}
|