configura
configura copied to clipboard
Support nested structs
If I have something like:
type Config struct {
Foo struct {
Bar int
}
}
I should be able to set Bar
with the env var: PREFIX_FOO_BAR
or with any other in case that the env var name is override with a struct tag.