MiddlewareFunc defines a function to process middleware.
func(next HandlerFunc) HandlerFunc
| 127 | |
| 128 | // MiddlewareFunc defines a function to process middleware. |
| 129 | type MiddlewareFunc func(next HandlerFunc) HandlerFunc |
| 130 | |
| 131 | // MiddlewareConfigurator defines interface for creating middleware handlers with possibility to return configuration errors instead of panicking. |
| 132 | type MiddlewareConfigurator interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…