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

pull/1/head
xiaoqidun 2020-12-26 10:52:32 +08:00
parent f58a05391e
commit 379e65dafc
1 changed files with 9 additions and 0 deletions

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