1Panel/backend/constant/runtime.go

16 lines
248 B
Go
Raw Normal View History

package constant
const (
2023-03-31 14:02:28 +08:00
ResourceLocal = "local"
ResourceAppstore = "appstore"
2023-03-31 14:02:28 +08:00
RuntimeNormal = "normal"
RuntimeError = "error"
RuntimeBuildIng = "building"
2023-04-02 16:54:00 +08:00
RuntimePHP = "php"
RuntimeProxyUnix = "unix"
RuntimeProxyTcp = "tcp"
)