package routing import ( "net/http" "lishwist/http/response" "github.com/Teajey/rsvp" ) func NotFound(s *response.Session, h http.Header, r *http.Request) rsvp.Response { return response.Error(http.StatusNotFound, "Page not found") }