portfolio/web/webRoutes.go
2025-02-24 00:16:27 +01:00

23 lines
659 B
Go

package web
import (
"net/http"
"portfolio/web/handlers"
)
func Routes() *http.ServeMux {
// Create a new request multiplexer
// Take incoming requests and dispatch them to the matching webHandler
mux := http.NewServeMux()
// Register the routes and webHandler
mux.HandleFunc("/", handlers.HomePageHandler)
mux.HandleFunc("/projects", handlers.ProjectPageHandler)
mux.HandleFunc("/projects/edit", handlers.CreateProjectEditBody)
mux.HandleFunc("/about", handlers.AboutPageHandler)
mux.HandleFunc("/login", handlers.LoginPageHandler)
mux.Handle("/assets/", http.StripPrefix("/assets/", http.FileServer(http.Dir("./web/assets"))))
return mux
}