9 lines
149 B
Go
9 lines
149 B
Go
package domain
|
|
|
|
// AppState holds application state.
|
|
type AppState struct {
|
|
ContainerRunning bool
|
|
IngressLive bool
|
|
IngressURL string
|
|
}
|