1Panel/backend/constant/runtime.go

16 lines
248 B
Go
Raw Normal View History

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