Files
nixcn-cms/config/env.go
2025-12-23 20:31:25 +08:00

15 lines
133 B
Go

package config
import (
"os"
)
func TZ() string {
tz := os.Getenv("TZ")
if tz == "" {
return "Asia/Shanghai"
}
return tz
}