(h handler, w http.ResponseWriter, r *http.Request, pathParams map[string]string)
| 567 | } |
| 568 | |
| 569 | func (s *ServeMux) handleHandler(h handler, w http.ResponseWriter, r *http.Request, pathParams map[string]string) { |
| 570 | h.h(w, r.WithContext(withHTTPPattern(r.Context(), h.pat)), pathParams) |
| 571 | } |
| 572 | |
| 573 | func chainMiddlewares(mws []Middleware) Middleware { |
| 574 | return func(next HandlerFunc) HandlerFunc { |
no test coverage detected