With adds inline middlewares for an endpoint handler.
(middlewares ...func(http.Handler) http.Handler)
| 72 | |
| 73 | // With adds inline middlewares for an endpoint handler. |
| 74 | With(middlewares ...func(http.Handler) http.Handler) Router |
| 75 | |
| 76 | // Group adds a new inline-Router along the current routing |
| 77 | // path, with a fresh middleware stack for the inline-Router. |
no outgoing calls