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

import (
	"net/http"
)

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