Methods -------------------------------------------------------------------- methodMatcher matches the request against HTTP methods.
| 324 | |
| 325 | // methodMatcher matches the request against HTTP methods. |
| 326 | type methodMatcher []string |
| 327 | |
| 328 | func (m methodMatcher) Match(r *http.Request, match *RouteMatch) bool { |
| 329 | return matchInArray(m, r.Method) |
no outgoing calls
no test coverage detected