Files
aimaren/vendor/github.com/spf13/viper/experimental.go
T
2025-07-26 05:58:59 +00:00

9 lines
204 B
Go

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