diff options
Diffstat (limited to 'view/index.go')
-rw-r--r-- | view/index.go | 9 |
1 files changed, 9 insertions, 0 deletions
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) +} |