PriorityRoute are custom route implementations that are matched against each request before the routes in the general lookup tree.
| 459 | // PriorityRoute are custom route implementations that are matched against |
| 460 | // each request before the routes in the general lookup tree. |
| 461 | type PriorityRoute interface { |
| 462 | // If the request is matched, returns a route; otherwise, nil. |
| 463 | // Additionally it may return a parameter map used by the filters |
| 464 | // in the route. |
| 465 | Match(*http.Request) (*routing.Route, map[string]string) |
| 466 | } |
| 467 | |
| 468 | // Proxy instances implement Skipper proxying functionality. For |
| 469 | // initializing, see the WithParams the constructor and Params. |
no outgoing calls
no test coverage detected
searching dependent graphs…