mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-14 11:37:29 +08:00
25 lines
512 B
Go
25 lines
512 B
Go
package constant
|
|
|
|
type DBContext string
|
|
|
|
const (
|
|
DB DBContext = "db"
|
|
|
|
SystemRestart = "systemRestart"
|
|
|
|
TypeWebsite = "website"
|
|
TypePhp = "php"
|
|
TypeSSL = "ssl"
|
|
TypeSystem = "system"
|
|
)
|
|
|
|
const (
|
|
TimeOut5s = 5
|
|
TimeOut20s = 20
|
|
TimeOut5m = 300
|
|
|
|
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"
|
|
)
|