diff --git a/route.go b/route.go index ca54610..6c53f9f 100644 --- a/route.go +++ b/route.go @@ -39,6 +39,10 @@ type Route struct { buildVarsFunc BuildVarsFunc } +func (r *Route) SkipClean() bool { + return r.skipClean +} + // Match matches the route against the request. func (r *Route) Match(req *http.Request, match *RouteMatch) bool { if r.buildOnly || r.err != nil {