summaryrefslogtreecommitdiff
path: root/view/index.go
diff options
context:
space:
mode:
Diffstat (limited to 'view/index.go')
-rw-r--r--view/index.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/view/index.go b/view/index.go
index 7d12783..46389d5 100644
--- a/view/index.go
+++ b/view/index.go
@@ -4,6 +4,10 @@ import (
"net/http"
)
-func IndexRead(w http.ResponseWriter, r *http.Request) {
- http.Redirect(w, r, "/recipes", http.StatusSeeOther)
+func IndexRead() http.Handler {
+ return http.HandlerFunc(
+ func(w http.ResponseWriter, r *http.Request) {
+ http.Redirect(w, r, "/recipes", http.StatusSeeOther)
+ },
+ )
}