2022-03-03 13:28:00 -05:00
|
|
|
package main
|
|
|
|
|
2022-03-07 13:13:34 -05:00
|
|
|
import "git.saintnet.tech/stryan/freego"
|
2022-03-03 13:28:00 -05:00
|
|
|
|
|
|
|
//type newGameReq struct{}
|
|
|
|
|
|
|
|
type newGameResp struct {
|
|
|
|
GameID int `json:"game_id"`
|
|
|
|
PlayerID string `json:"player_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type gameReq struct {
|
|
|
|
PlayerID string `json:"player_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type gameResp struct {
|
|
|
|
GameBoard *freego.Game `json:"board"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type gameStatusReq struct {
|
|
|
|
PlayerID string `json:"player_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type gameStatusResp struct {
|
|
|
|
GameStatus freego.GameState `json:"game_status"`
|
|
|
|
Move int `json:"move"`
|
|
|
|
}
|
2022-03-07 14:47:21 -05:00
|
|
|
|
|
|
|
type gameMovePostReq struct {
|
|
|
|
PlayerID string `json:"player_id"`
|
|
|
|
Move string `json:"move"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type gameMovePostRes struct {
|
|
|
|
Valid bool `json:"valid"`
|
|
|
|
Result bool `json:"result"`
|
|
|
|
Parsed string `json:"parsed"`
|
|
|
|
Error error `json:"error"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type gameMoveReq struct {
|
|
|
|
PlayerID string `json:"player_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type gameMoveRes struct {
|
|
|
|
Move string `json:"move"`
|
|
|
|
}
|