samba/pkg/xtime/os.go
2025-06-04 09:51:39 +08:00

12 lines
137 B
Go

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