Cosmetics

This commit is contained in:
Óscar M. Lage 2024-12-05 14:14:27 +01:00
parent ae0ef08f9b
commit b30400c288

View File

@ -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)