aboutsummaryrefslogtreecommitdiff
path: root/config/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'config/config.go')
-rw-r--r--config/config.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/config/config.go b/config/config.go
deleted file mode 100644
index 262a5d2..0000000
--- a/config/config.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package config
-
-// Config object
-type Config struct {
- verbose bool
- quiet bool
- stateFile string
- workDir string
-}
-
-// Verbose gets the verbose field of the configuration
-func (config *Config) Verbose() bool { return config.verbose }
-
-// Quiet gets the quiet field of the configuration
-func (config *Config) Quiet() bool { return config.quiet }
-
-// StateFile gets the stateFile field of the configuration
-func (config *Config) StateFile() string { return config.stateFile }
-
-// WorkDir gets the workDir field of the configuration
-func (config *Config) WorkDir() string { return config.workDir }