feat(时区设置): 默认北京时区,支持TZ环境变量
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
xiaoqidun 2020-12-26 10:52:32 +08:00
parent f58a05391e
commit 379e65dafc

View File

@ -11,6 +11,7 @@ import (
"os"
"path/filepath"
"strings"
"time"
_ "time/tzdata"
)
@ -54,6 +55,14 @@ func VarIsEmpty(a ...interface{}) bool {
return false
}
func init() {
tz := os.Getenv("TZ")
if tz == "" {
tz = "Asia/Shanghai"
}
time.Local, _ = time.LoadLocation(tz)
}
func main() {
var (
err error