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
Examples:
type MyConf struct { Env string `default:"${APP_ENV | dev}"` Debug bool `default:"${APP_DEBUG | false}"` } cfg := NewWithOptions("test", ParseEnv, ParseDefault) mc := &MyConf{} _ = cfg.Decode(mc)
Output:
&config.MyConf { Env: string("dev"), #len=3 Debug: bool(false), },
The text was updated successfully, but these errors were encountered:
feat: support parse ENV var on struct default tag #97
9610f97
inhere
No branches or pull requests
Examples:
Output:
The text was updated successfully, but these errors were encountered: