Headers -------------------------------------------------------------------- headerMatcher matches the request against header values.
| 232 | |
| 233 | // headerMatcher matches the request against header values. |
| 234 | type headerMatcher map[string]string |
| 235 | |
| 236 | func (m headerMatcher) Match(r *http.Request, match *RouteMatch) bool { |
| 237 | return matchMapWithString(m, r.Header, true) |
no outgoing calls
no test coverage detected