Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
kardolus
GitHub Repository: kardolus/chatgpt-cli
Path: blob/main/vendor/github.com/spf13/viper/experimental.go
2875 views
1
package viper
2
3
// ExperimentalBindStruct tells Viper to use the new bind struct feature.
4
func ExperimentalBindStruct() Option {
5
return optionFunc(func(v *Viper) {
6
v.experimentalBindStruct = true
7
})
8
}
9
10