(http.ResponseWriter, *http.Request)
| 64 | // if they are already HandlerError values. |
| 65 | type Handler interface { |
| 66 | ServeHTTP(http.ResponseWriter, *http.Request) error |
| 67 | } |
| 68 | |
| 69 | // HandlerFunc is a convenience type like http.HandlerFunc. |
no outgoing calls