Removing error check that can never be forced
All checks were successful
gitea-deepak/gogmagog/pipeline/head This commit looks good

This commit is contained in:
Deepak Mallubhotla 2020-12-28 17:02:07 -06:00
parent 538e23708a
commit 0a6caeffc5
Signed by: deepak
GPG Key ID: 64BF53A3369104E7

View File

@ -63,10 +63,6 @@ func GetConf(filename string) (*Conf, error) {
return nil, err return nil, err
} }
err = vv.Unmarshal(&cnf) vv.Unmarshal(&cnf)
if err != nil {
log.Print("Could not read config file into struct: \n", err)
return nil, err
}
return cnf, nil return cnf, nil
} }