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)
		},
	)
}