1Panel/backend/constant/common.go

26 lines
512 B
Go
Raw Normal View History

2022-11-02 15:19:14 +08:00
package constant
type DBContext string
const (
DB DBContext = "db"
SystemRestart = "systemRestart"
2023-11-23 11:00:08 +08:00
TypeWebsite = "website"
TypePhp = "php"
TypeSSL = "ssl"
TypeSystem = "system"
2022-11-02 15:19:14 +08:00
)
const (
TimeOut5s = 5
TimeOut20s = 20
TimeOut5m = 300
2024-06-28 14:04:08 +08:00
DateLayout = "2006-01-02" // or use time.DateOnly while go version >= 1.20
DefaultDate = "1970-01-01"
DateTimeLayout = "2006-01-02 15:04:05" // or use time.DateTime while go version >= 1.20
DateTimeSlimLayout = "20060102150405"
)