summaryrefslogtreecommitdiff
path: root/vendor/github.com/spf13/viper/experimental.go
blob: 6e19e8a1001638974d8c32da979503a304022f9c (plain)
1
2
3
4
5
6
7
8
package viper

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