feat: add.
This commit is contained in:
13
timeutil/consts.go
Normal file
13
timeutil/consts.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package util
|
||||
|
||||
import "time"
|
||||
|
||||
const (
|
||||
DateLayout = "2006-01-02"
|
||||
ClockLayout = "15:04:05"
|
||||
TimeLayout = DateLayout + " " + ClockLayout
|
||||
|
||||
DefaultTimeLocationName = "Asia/Shanghai"
|
||||
)
|
||||
|
||||
var ReferenceTimeValue time.Time = time.Date(2006, 1, 2, 15, 4, 5, 999999999, time.FixedZone("MST", -7*60*60))
|
||||
Reference in New Issue
Block a user