The Handler interface is used to process the Fetcher's requests. It is similar to the net/http.Handler interface.
| 20 | // The Handler interface is used to process the Fetcher's requests. It is similar to the |
| 21 | // net/http.Handler interface. |
| 22 | type Handler interface { |
| 23 | Handle(*Context, *http.Response, error) |
| 24 | } |
| 25 | |
| 26 | // A HandlerFunc is a function signature that implements the Handler interface. A function |
| 27 | // with this signature can thus be used as a Handler. |
no outgoing calls
no test coverage detected