mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-07 05:32:25 +00:00
- Change package name general_server to gateway - Changing the structure of directories and packages - Adding vendor to the project
9 lines
204 B
Go
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
|
|
})
|
|
}
|