mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-15 20:20:11 +08:00
34 lines
705 B
Go
34 lines
705 B
Go
package constant
|
|
|
|
const (
|
|
ResourceLocal = "local"
|
|
ResourceAppstore = "appstore"
|
|
|
|
RuntimeNormal = "normal"
|
|
RuntimeError = "error"
|
|
RuntimeBuildIng = "building"
|
|
RuntimeStarting = "starting"
|
|
RuntimeRunning = "running"
|
|
RuntimeReCreating = "recreating"
|
|
RuntimeStopped = "stopped"
|
|
RuntimeUnhealthy = "unhealthy"
|
|
RuntimeCreating = "creating"
|
|
|
|
RuntimePHP = "php"
|
|
RuntimeNode = "node"
|
|
RuntimeJava = "java"
|
|
|
|
RuntimeProxyUnix = "unix"
|
|
RuntimeProxyTcp = "tcp"
|
|
|
|
RuntimeUp = "up"
|
|
RuntimeDown = "down"
|
|
RuntimeRestart = "restart"
|
|
|
|
RuntimeInstall = "install"
|
|
RuntimeUninstall = "uninstall"
|
|
RuntimeUpdate = "update"
|
|
|
|
RuntimeNpm = "npm"
|
|
RuntimeYarn = "yarn"
|
|
)
|