mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-15 17:12:59 -04:00
9 lines
196 B
Go
9 lines
196 B
Go
package roverd
|
|
|
|
type RoverEvent struct {
|
|
Type string `json:"type"`
|
|
Event string `json:"event"`
|
|
Ts int64 `json:"ts"`
|
|
Data map[string]any `json:"data,omitempty"`
|
|
}
|