1Panel/backend/constant/runtime.go
zhengkunwang 433055b851
Some checks failed
Build Test / build-linux-binary (push) Failing after -6m1s
Build / SonarCloud (push) Failing after -5m56s
sync2gitee / repo-sync (push) Failing after -6m6s
feat: 增加 Go 运行环境 (#5632)
2024-07-01 18:35:15 +08:00

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"
)