This commit is contained in:
shoopea
2023-07-31 20:47:24 +02:00
parent f6fdd83a23
commit c72f903e31
3 changed files with 12 additions and 6 deletions

View File

@@ -9,13 +9,12 @@ import (
)
var (
cfgFile = flag.String("config", "config.json", "config file")
cfgFile = flag.String("config", "backup.json", "config file")
isDaemon = flag.Bool("daemon", false, "run as daemon")
debug = flag.Bool("debug", false, "log debug messages")
quiet = flag.Bool("quiet", false, "remove most log messages")
logFile = flag.String("logfile", "", "log file")
cfg Config
email *Email
)
func main() {