12 lines
137 B
Go
Raw Permalink Normal View History

2025-06-04 09:51:39 +08:00
package xtime
import (
"time"
)
// 设置系统时区
func SetTimeOffset(offset int) {
time.Local = time.FixedZone("CST", offset)
}