diff options
author | Wolfy-J <[email protected]> | 2019-09-06 13:18:01 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2019-09-06 13:18:01 +0300 |
commit | d885d927c4d7ef42daf9953dd8b2a9f6dd6a75ea (patch) | |
tree | 676de4cb6113dca10b4d96d67e3059c83b1c4a3c /cmd | |
parent | 1d6b7c125c2d07c3ef646e9a90f3ebb422fa44df (diff) |
golint and go fmt
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/util/config.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cmd/util/config.go b/cmd/util/config.go index a1b3d25d..0a8d6005 100644 --- a/cmd/util/config.go +++ b/cmd/util/config.go @@ -9,28 +9,28 @@ import ( "strings" ) -// configWrapper provides interface bridge between v configs and service.Config. -type configWrapper struct { +// ConfigWrapper provides interface bridge between v configs and service.Config. +type ConfigWrapper struct { v *viper.Viper } // Get nested config section (sub-map), returns nil if section not found. -func (w *configWrapper) Get(key string) service.Config { +func (w *ConfigWrapper) Get(key string) service.Config { sub := w.v.Sub(key) if sub == nil { return nil } - return &configWrapper{sub} + return &ConfigWrapper{sub} } // Unmarshal unmarshal config data into given struct. -func (w *configWrapper) Unmarshal(out interface{}) error { +func (w *ConfigWrapper) Unmarshal(out interface{}) error { return w.v.Unmarshal(out) } // LoadConfig config and merge it's values with set of flags. -func LoadConfig(cfgFile string, path []string, name string, flags []string) (*configWrapper, error) { +func LoadConfig(cfgFile string, path []string, name string, flags []string) (*ConfigWrapper, error) { cfg := viper.New() if cfgFile != "" { @@ -124,7 +124,7 @@ func LoadConfig(cfgFile string, path []string, name string, flags []string) (*co return nil, err } - return &configWrapper{merged}, nil + return &ConfigWrapper{merged}, nil } func parseFlag(flag string) (string, string, error) { |