14 lines
128 B
Go
Raw Permalink Normal View History

2024-12-19 15:03:36 +08:00
package cmd
import (
"time"
)
func init() {
time.Local = time.FixedZone("CST", 8*3600)
initCli()
initRoot(cliCommand)
}