Simplified to Default and SetDefault

This commit is contained in:
Alexandre Bourget 2016-01-09 00:25:12 -05:00
parent 963ca4f768
commit 7b7d1442ac

View file

@ -174,15 +174,15 @@ func New() *Viper {
return v return v
} }
// DefaultConfig retrieves the default Viper instance. To be loaded // Default retrieves the default Viper instance. To be loaded later
// later with SetDefaultConfig. // with SetDefault.
func DefaultConfig() *Viper { func Default() *Viper {
return v return v
} }
// SetDefaultConfig applies this Viper instance as the default. Used // SetDefault applies this Viper instance as the default. Used when
// when calling the functions defined in the viper package. // calling the functions defined in the viper package.
func SetDefaultConfig(conf *Viper) { func SetDefault(conf *Viper) {
v = conf v = conf
} }