bumps our spf13/viper version

This commit is contained in:
kim 2025-03-26 11:15:25 +00:00
commit 8b99d0d5e4
146 changed files with 4636 additions and 18492 deletions

8
vendor/github.com/spf13/viper/experimental.go generated vendored Normal file
View file

@ -0,0 +1,8 @@
package viper
// ExperimentalBindStruct tells Viper to use the new bind struct feature.
func ExperimentalBindStruct() Option {
return optionFunc(func(v *Viper) {
v.experimentalBindStruct = true
})
}