devicemngmt_old/time.go

21 lines
453 B
Go
Raw Normal View History

2021-08-17 04:03:50 +00:00
package devicemngt
import "time"
//
// NOTE: due to unique timezone in server's code, all using time will be convert to HCM timezone (UTC +7)
// All functions generate time, must be call util functions here
// WARNING: don't accept call time.Now() directly
//
// getHCMLocation ...
func getHCMLocation() *time.Location {
l, _ := time.LoadLocation(timezoneHCM)
return l
}
// now ...
func now() time.Time {
return time.Now().In(getHCMLocation())
}