fox/xtime/os.go

12 lines
137 B
Go
Raw Normal View History

2025-05-25 20:02:15 +08:00
package xtime
import (
"time"
)
// 设置系统时区
func SetTimeOffset(offset int) {
time.Local = time.FixedZone("CST", offset)
}