mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-19 20:08:24 +08:00
16 lines
315 B
Go
16 lines
315 B
Go
package constant
|
|
|
|
const (
|
|
StatusSuccess = "Success"
|
|
StatusFailed = "Failed"
|
|
|
|
// node
|
|
StatusWaiting = "waiting"
|
|
StatusDownloading = "downloading"
|
|
StatusPacking = "packing"
|
|
StatusSending = "sending"
|
|
StatusStarting = "starting"
|
|
StatusHealthy = "healthy"
|
|
StatusUnhealthy = "unhealthy"
|
|
)
|