You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
208 B

2 years ago
  1. package constant
  2. import "time"
  3. const Loc = "Asia/Shanghai"
  4. func GetLocalZone() (location *time.Location) {
  5. var err error
  6. location, err = time.LoadLocation(Loc)
  7. if err != nil {
  8. panic(err)
  9. }
  10. return
  11. }