update default values

This commit is contained in:
shoopea 2021-10-17 22:39:30 +08:00
parent 9eb8cee7d8
commit 9347ba08cd

View File

@ -30,8 +30,8 @@ type BoxConfig struct {
var (
cfgFile = flag.String("config", "config.json", "config file")
schedFlag = flag.String("schedule", "", "specific schedule")
testFlag = flag.Bool("test", true, "test run")
debugFlag = flag.Bool("debug", true, "debug")
testFlag = flag.Bool("test", false, "test run")
debugFlag = flag.Bool("debug", false, "debug")
cfg Config
)