1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-19 08:19:15 +08:00
1Panel/backend/constant/website.go

23 lines
286 B
Go
Raw Normal View History

2022-10-28 17:04:57 +08:00
package constant
const (
WebRunning = "Running"
WebStopped = "Stopped"
)
const (
DateLayout = "2006-01-02"
DefaultDate = "1970-01-01"
)
2022-11-21 11:27:56 +08:00
const (
ProtocolHTTP = "HTTP"
ProtocolHTTPS = "HTTPS"
)
2022-12-12 15:36:45 +08:00
const (
Deployment = "deployment"
Static = "static"
Proxy = "proxy"
)