summaryrefslogtreecommitdiff
path: root/view/index.go
blob: 7d12783fd77790498914ffa968e3f07cc859f6fa (plain)
1
2
3
4
5
6
7
8
9
package view

import (
	"net/http"
)

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