spf13--viper/experimental.go

9 lines
200 B
Go
Raw Normal View History

package viper
// ExperimentalBindStruct tells Viper to use the new bind struct feature.
func ExperimentalBindStruct() Option {
return optionFunc(func(v *Viper) {
v.experimentalFinder = true
})
}