diff --git a/cmd/web/main.go b/cmd/web/main.go index 0eee369..15491a5 100644 --- a/cmd/web/main.go +++ b/cmd/web/main.go @@ -11,19 +11,16 @@ import ( ) func main() { - // Load .env file err := godotenv.Load() if err != nil { log.Fatal("Error loading .env file") } - // Server config port := os.Getenv("SERVER_PORT") if port == "" { port = "8080" } - // Start server http.HandleFunc("/", web.Routes) log.Printf("Server running on port %s...", port) err = http.ListenAndServe(":"+port, nil)