ServeHTTP implements `http.Handler` interface, which serves HTTP requests.
(w http.ResponseWriter, r *http.Request)
| 764 | |
| 765 | // ServeHTTP implements `http.Handler` interface, which serves HTTP requests. |
| 766 | func (e *Echo) ServeHTTP(w http.ResponseWriter, r *http.Request) { |
| 767 | e.serveHTTPFunc(w, r) |
| 768 | } |
| 769 | |
| 770 | // serveHTTP implements `http.Handler` interface, which serves HTTP requests. |
| 771 | func (e *Echo) serveHTTP(w http.ResponseWriter, r *http.Request) { |
no outgoing calls