useInterface appends a middleware to the chain. Middleware can be used to intercept or otherwise modify requests and/or responses, and are executed in the order that they are applied to the Router.
(mw middleware)
| 29 | |
| 30 | // useInterface appends a middleware to the chain. Middleware can be used to intercept or otherwise modify requests and/or responses, and are executed in the order that they are applied to the Router. |
| 31 | func (r *Router) useInterface(mw middleware) { |
| 32 | r.middlewares = append(r.middlewares, mw) |
| 33 | } |
| 34 | |
| 35 | // CORSMethodMiddleware automatically sets the Access-Control-Allow-Methods response header |
| 36 | // on requests for routes that have an OPTIONS method matcher to all the method matchers on |
no outgoing calls