(*Context, *http.Response, error)
| 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 |
no outgoing calls