MatcherFunc adds a custom function to be used as request matcher.
(f MatcherFunc)
| 317 | |
| 318 | // MatcherFunc adds a custom function to be used as request matcher. |
| 319 | func (r *Route) MatcherFunc(f MatcherFunc) *Route { |
| 320 | return r.addMatcher(f) |
| 321 | } |
| 322 | |
| 323 | // Methods -------------------------------------------------------------------- |
| 324 |
nothing calls this directly
no test coverage detected