diff --git a/config/config.go b/config/config.go index 14c7691..d7f7978 100644 --- a/config/config.go +++ b/config/config.go @@ -30,10 +30,7 @@ func init() { LogLevel: "info", BasePath: "/", } - err := godotenv.Load() - if err != nil { - return - } + _ = godotenv.Load() if os.Getenv("PORT") != "" { atoi, err := strconv.Atoi(os.Getenv("PORT")) if err != nil {