From cadb15f7afb5e7c88667eb4006209efca17744af Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Mon, 24 Feb 2020 23:05:45 +0100 Subject: Added tests to the main package and completely reworked the code around that --- config/init.go | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 config/init.go (limited to 'config/init.go') diff --git a/config/init.go b/config/init.go deleted file mode 100644 index f737fb3..0000000 --- a/config/init.go +++ /dev/null @@ -1,16 +0,0 @@ -package config - -import "flag" - -// Init initialises a program config from the command line flags -func (c *Config) Init() { - flag.BoolVar(&c.verbose, "v", false, "Activates verbose debugging output, defaults to false.") - flag.BoolVar(&c.quiet, "q", false, "Suppress all output, suitable to force a silent update of the spool file.") - flag.StringVar(&c.stateFile, "f", "", "Force the state file to use, defaults to "+bareosStateFile+" if it exists else "+baculaStateFile+".") - flag.StringVar(&c.workDir, "w", "", "Force the work directory to use, defaults to "+bareosWorkDir+" if it exists else "+baculaWorkDir+".") - - // command line arguments parsing - flag.Parse() - c.checkWorkDir() - c.checkStateFile() -} -- cgit v1.2.3