Andrew Todd

Results 2 comments of Andrew Todd

@jakubdyszkiewicz I ran into a similar issue and while investigating I found this is specifically triggered when using the `envconfig` struct tag to specify the environment variable name. When using...

Here's a playground snippet demonstrating the difference: https://play.golang.org/p/KssTfMgXED1 ```package main import ( "fmt" "os" "github.com/kelseyhightower/envconfig" ) type ImplicitTest struct { User string } type ExplicitTest struct { User string `envconfig:"USER"`...