ultone/internal/cmd/init.go
2025-03-20 11:55:47 +08:00

12 lines
115 B
Go

package cmd
import (
"time"
)
func init() {
time.Local = time.FixedZone("CST", 8*3600)
initRoot(initCli())
}