Wrap decorates the next handler by doing some extra work.
(next Handler)
| 20 | type Middleware interface { |
| 21 | // Wrap decorates the next handler by doing some extra work. |
| 22 | Wrap(next Handler) Handler |
| 23 | } |
| 24 | |
| 25 | // MiddlewareFunc is a function that implements Middleware. |
no outgoing calls
no test coverage detected