2023-03-30 16:47:47 +08:00
|
|
|
package constant
|
|
|
|
|
|
|
|
const (
|
2023-03-31 14:02:28 +08:00
|
|
|
ResourceLocal = "local"
|
|
|
|
ResourceAppstore = "appstore"
|
2023-03-30 16:47:47 +08:00
|
|
|
|
2023-09-25 17:50:14 +08:00
|
|
|
RuntimeNormal = "normal"
|
|
|
|
RuntimeError = "error"
|
|
|
|
RuntimeBuildIng = "building"
|
|
|
|
RuntimeStarting = "starting"
|
|
|
|
RuntimeRunning = "running"
|
|
|
|
RuntimeReCreating = "recreating"
|
2023-04-02 16:54:00 +08:00
|
|
|
|
2023-09-25 17:50:14 +08:00
|
|
|
RuntimePHP = "php"
|
|
|
|
RuntimeNode = "node"
|
2023-04-04 18:54:04 +08:00
|
|
|
|
|
|
|
RuntimeProxyUnix = "unix"
|
|
|
|
RuntimeProxyTcp = "tcp"
|
2023-03-30 16:47:47 +08:00
|
|
|
)
|