| 1234567891011121314151617181920212223242526 |
- 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 // on/off
- DesiredStatus string
- ActualNetwork string // bridge/wireguard
- DesiredNetwork string
- CreatedAt string
- }
|