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