From 62e735a0ff2a05c5455abc1f27d1d14167158175 Mon Sep 17 00:00:00 2001 From: xengineering Date: Thu, 15 Feb 2024 19:43:36 +0100 Subject: view: Add index handler --- main.go | 1 + view/index.go | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 view/index.go diff --git a/main.go b/main.go index c7a6871..2f398b3 100644 --- a/main.go +++ b/main.go @@ -45,6 +45,7 @@ func startServer(addr string) *http.Server { Handler(http.StripPrefix("/static/", http.FileServer(http.FS(static)))) r.HandleFunc("/recipes", view.Recipes).Methods(`GET`) r.HandleFunc("/recipe/{id:[0-9]+}", view.Recipe).Methods(`GET`) + r.HandleFunc("/", view.Index).Methods(`GET`) muxer := http.NewServeMux() muxer.Handle("/", r) diff --git a/view/index.go b/view/index.go new file mode 100644 index 0000000..8b9e73f --- /dev/null +++ b/view/index.go @@ -0,0 +1,9 @@ +package view + +import ( + "net/http" +) + +func Index(w http.ResponseWriter, r *http.Request) { + http.Redirect(w, r, "/recipes", http.StatusSeeOther) +} -- cgit v1.2.3-70-g09d2