Files
icecast-ripper/vendor/github.com/spf13/viper/experimental.go
Dmitrii Andreev f64163d12a Rework with go
2025-04-07 11:15:05 +03: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
})
}