summaryrefslogtreecommitdiff
path: root/view/index.go
blob: 46389d5f2177a94b316b59dc464e8b558e691d9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package view

import (
	"net/http"
)

func IndexRead() http.Handler {
	return http.HandlerFunc(
		func(w http.ResponseWriter, r *http.Request) {
			http.Redirect(w, r, "/recipes", http.StatusSeeOther)
		},
	)
}