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