chore: fix exiting if env is not found
All checks were successful
/ build-and-push-image (push) Successful in 36s

This commit is contained in:
log101 2024-06-11 12:30:33 +03:00
parent 51cd94fe0a
commit 848684e58a

View File

@ -53,7 +53,7 @@ func main() {
// Load environment variables
err := godotenv.Load()
if err != nil {
log.Fatal("Error loading .env file")
log.Println("Error loading .env file")
}
dbPath := os.Getenv("DB_PATH")