diff --git a/main.go b/main.go index 02a11c0..3833cc4 100644 --- a/main.go +++ b/main.go @@ -14,7 +14,9 @@ func contactHandler(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "

Contact Page

To get in touch, email me at example@example.com

") } -var pathHandler http.HandlerFunc = func(w http.ResponseWriter, r *http.Request) { +type Router struct{} + +func (router Router) ServeHTTP(w http.ResponseWriter, r *http.Request) { switch r.URL.Path { case "/": homeHandler(w, r) @@ -29,6 +31,7 @@ var pathHandler http.HandlerFunc = func(w http.ResponseWriter, r *http.Request) } func main() { + var router Router fmt.Println("Starting the server on :3000...") - http.ListenAndServe(":3000", pathHandler) + http.ListenAndServe(":3000", router) }