(context.Context, http.ResponseWriter, *http.Request)
| 11 | // Handler is a request handler with an added context |
| 12 | type Handler interface { |
| 13 | ServeHTTPContext(context.Context, http.ResponseWriter, *http.Request) |
| 14 | } |
| 15 | |
| 16 | // A HandlerFunc is an adaptor to turn a function in to a Handler |
no outgoing calls
no test coverage detected