mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-16 12:39:15 +08:00
36 lines
725 B
Go
36 lines
725 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"
|
||
|
RuntimeGo = "go"
|
||
|
|
||
|
RuntimeProxyUnix = "unix"
|
||
|
RuntimeProxyTcp = "tcp"
|
||
|
|
||
|
RuntimeUp = "up"
|
||
|
RuntimeDown = "down"
|
||
|
RuntimeRestart = "restart"
|
||
|
|
||
|
RuntimeInstall = "install"
|
||
|
RuntimeUninstall = "uninstall"
|
||
|
RuntimeUpdate = "update"
|
||
|
|
||
|
RuntimeNpm = "npm"
|
||
|
RuntimeYarn = "yarn"
|
||
|
)
|