package utils import "time" func GetTimezone() (*time.Location, error) { loc, err := time.LoadLocation("Asia/Shanghai") return loc, err }