Middleware defines the middleware type. Functions in this package that provide a middleware should return this type.
func(next http.Handler) http.Handler
| 8 | // Middleware defines the middleware type. Functions in this |
| 9 | // package that provide a middleware should return this type. |
| 10 | type Middleware func(next http.Handler) http.Handler |
| 11 | |
| 12 | // Chain creates a middleware that composes all of the internal chained |
| 13 | // middleware |
nothing calls this directly
no outgoing calls
no test coverage detected