Getting a lint warning ineffectual assignment to "cfg"
at line cfg := &utils.Config{}
. Why is that ?
cfg := &utils.Config{}
env := os.Getenv("TEST")
if strings.EqualFold(env, "INT") {
cfg = utils.GetIntConfig()
} else {
cfg = utils.GetConfig()
}
cgw.Cgw(cfg)
After the following if
statement, cfg
is written, thus the value assigned to cfg
using cfg := &utils.Config{}
is never used. You are using an assignment where a declaration would do.
var cfg *utils.Config
...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With