(ctx *Context, next RequestDelegate)
| 19 | // handler chain but has no access to the structured Result. |
| 20 | type Middleware interface { |
| 21 | Invoke(ctx *Context, next RequestDelegate) error |
| 22 | } |
| 23 | |
| 24 | // routingMiddleware is responsible for matching the incoming request |
no outgoing calls