diff options
-rw-r--r-- | main.go | 1 | ||||
-rw-r--r-- | view/index.go | 9 |
2 files changed, 10 insertions, 0 deletions
@@ -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) +} |