octoplex/domain/types.go
2025-01-23 22:22:14 +01:00

15 lines
262 B
Go

package domain
// AppState holds application state.
type AppState struct {
ContainerRunning bool
IngressLive bool
IngressURL string
Destinations []Destination
}
// Destination is a single destination.
type Destination struct {
URL string
}