Func is to Interface as http.HandlerFunc is to http.Handler
func(http.Handler) http.Handler
| 16 | |
| 17 | // Func is to Interface as http.HandlerFunc is to http.Handler |
| 18 | type Func func(http.Handler) http.Handler |
| 19 | |
| 20 | // Wrap implements Interface |
| 21 | func (m Func) Wrap(next http.Handler) http.Handler { |
no outgoing calls
no test coverage detected