Files
crate/timehelper/time.go
2023-03-28 14:37:41 +08:00

9 lines
139 B
Go

package timehelper
import "time"
// SetupCST 把本地时区固定到CST
func SetupCST() {
time.Local = time.FixedZone("CST", 8*3600)
}