env icon indicating copy to clipboard operation
env copied to clipboard

🔍 Load environment variables into a config struct

Results 5 env issues
Sort by recently updated
recently updated
newest added

Something like: ```go type Config struct { Foo string `env:"FOO"` } var cfg struct { Config `env:"APP_,required"` } ``` See the conversation from #52 for details.

Release a stable version after #55 and #57 are implemented and tested.

The idea and API is similar to `flag.Visit`. This option could have solved #19

enhancement