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 ( var (
cfgFile = flag.String("config", "config.json", "config file") cfgFile = flag.String("config", "config.json", "config file")
schedFlag = flag.String("schedule", "", "specific schedule") schedFlag = flag.String("schedule", "", "specific schedule")
testFlag = flag.Bool("test", true, "test run") testFlag = flag.Bool("test", false, "test run")
debugFlag = flag.Bool("debug", true, "debug") debugFlag = flag.Bool("debug", false, "debug")
cfg Config cfg Config
) )