envconfig
envconfig copied to clipboard
Small library to read your configuration from environment variables
Results
1
envconfig issues
Sort by
recently updated
recently updated
newest added
By default the struct like: ```go type Config struct { TestEnvFoo string `envconfig:"TEST_ENV_FOO"` TestEnvBar string } ``` can be initialised from env: `TEST_ENV_FOO`, `TEST_ENV_BAR` if no prefix specified, but from...