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)