MCPcopy Index your code
hub / github.com/labstack/echo / ServeHTTP

Method ServeHTTP

echo.go:766–768  ·  view source on GitHub ↗

ServeHTTP implements `http.Handler` interface, which serves HTTP requests.

(w http.ResponseWriter, r *http.Request)

Source from the content-addressed store, hash-verified

764
765// ServeHTTP implements `http.Handler` interface, which serves HTTP requests.
766func (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.
771func (e *Echo) serveHTTP(w http.ResponseWriter, r *http.Request) {

Calls

no outgoing calls