mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-15 12:12:58 +08:00
11 lines
214 B
Go
11 lines
214 B
Go
package constant
|
|
|
|
const (
|
|
StatusRunning = "Running"
|
|
StatusStoped = "Stoped"
|
|
StatusWaiting = "Waiting"
|
|
StatusSuccess = "Success"
|
|
StatusFailed = "Failed"
|
|
StatusEnable = "Enable"
|
|
StatusDisable = "Disable"
|
|
)
|