1Panel/backend/constant/app.go

19 lines
252 B
Go
Raw Normal View History

package constant
const (
Running = "Running"
UnHealthy = "UnHealthy"
Error = "Error"
Stopped = "Stopped"
Installing = "Installing"
)
const (
ContainerPrefix = "1Panel-"
)
2022-09-30 17:56:06 +08:00
const (
AppNormal = "Normal"
AppTakeDown = "TakeDown"
)