You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
304 B

package client
import "hexmap-server/actions/syncable"
type Hello struct {
Version int `json:"version"`
}
type Refresh struct {
}
type SentAction struct {
Id int `json:"id"`
Action syncable.Action `json:"action"`
}
type SentActions struct {
Nested []SentAction `json:"nested"`
}