We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
type Config struct { Foo struct { Servers []struct { Name string Port int Host string `default:"0.0.0.0"` } Testing map[string]struct { Name string `default:"default"` } } }
foo: servers: - name: dev port: 4000 - name: alpha port: 5000 testing: data1:
The field in slice and map won't get default value when empty.
The text was updated successfully, but these errors were encountered:
The default values are applied before the config is loaded. So the later loaded structs in the slice don't have default values.
configor/utils.go
Lines 375 to 391 in 1095c48
Sorry, something went wrong.
jinzhu
No branches or pull requests
Reproducible Example
Description
The field in slice and map won't get default value when empty.
The text was updated successfully, but these errors were encountered: