| 123456789101112131415161718192021222324 |
- package structs
- // incoming websocket payloads
- type WsPayload struct {
- Type string `json:"type"`
- Action string `json:"action"`
- }
- // eventbus event payloads
- type Event struct {
- Type string
- Data interface{}
- }
- // for keeping track of container desired/actual state
- type ContainerState struct {
- ID string
- Name string
- Type string
- Image string
- ActualStatus string
- DesiredStatus string
- CreatedAt string
- }
|