1package viper 2 3// ExperimentalBindStruct tells Viper to use the new bind struct feature. 4func ExperimentalBindStruct() Option { 5 return optionFunc(func(v *Viper) { 6 v.experimentalBindStruct = true 7 }) 8} 9 10