diff options
Diffstat (limited to 'view/index.go')
-rw-r--r-- | view/index.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/index.go b/view/index.go index 8b9e73f..7d12783 100644 --- a/view/index.go +++ b/view/index.go @@ -4,6 +4,6 @@ import ( "net/http" ) -func Index(w http.ResponseWriter, r *http.Request) { +func IndexRead(w http.ResponseWriter, r *http.Request) { http.Redirect(w, r, "/recipes", http.StatusSeeOther) } |