ServeHTTP implements the http.Handler interface by passing the request along to its underlying Handler.
(w http.ResponseWriter, r *http.Request)
| 477 | // ServeHTTP implements the http.Handler interface by passing the request along |
| 478 | // to its underlying Handler. |
| 479 | func (a *API) ServeHTTP(w http.ResponseWriter, r *http.Request) { |
| 480 | a.handler.ServeHTTP(w, r) |
| 481 | } |
no outgoing calls