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