fox/xtime/os.go
2025-05-25 20:02:15 +08:00

12 lines
137 B
Go

package xtime
import (
"time"
)
// 设置系统时区
func SetTimeOffset(offset int) {
time.Local = time.FixedZone("CST", offset)
}