13 lines
117 B
Go
Raw Permalink Normal View History

2024-07-11 16:37:26 +08:00
package cmd
import (
"time"
)
func init() {
time.Local = time.FixedZone("CST", 8*3600)
2024-07-26 17:59:02 +08:00
initRoot()
initCli()
2024-07-11 16:37:26 +08:00
}