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

Method GET

group.go:37–39  ·  view source on GitHub ↗

GET implements `Echo#GET()` for sub-routes within the Group. Panics on error.

(path string, h HandlerFunc, m ...MiddlewareFunc)

Source from the content-addressed store, hash-verified

35
36// GET implements `Echo#GET()` for sub-routes within the Group. Panics on error.
37func (g *Group) GET(path string, h HandlerFunc, m ...MiddlewareFunc) RouteInfo {
38 return g.Add(http.MethodGet, path, h, m...)
39}
40
41// HEAD implements `Echo#HEAD()` for sub-routes within the Group. Panics on error.
42func (g *Group) HEAD(path string, h HandlerFunc, m ...MiddlewareFunc) RouteInfo {

Callers 1

FileFSMethod · 0.95

Calls 1

AddMethod · 0.95

Tested by

no test coverage detected