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

Method CONNECT

group.go:27–29  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

25
26// CONNECT implements `Echo#CONNECT()` for sub-routes within the Group. Panics on error.
27func (g *Group) CONNECT(path string, h HandlerFunc, m ...MiddlewareFunc) RouteInfo {
28 return g.Add(http.MethodConnect, path, h, m...)
29}
30
31// DELETE implements `Echo#DELETE()` for sub-routes within the Group. Panics on error.
32func (g *Group) DELETE(path string, h HandlerFunc, m ...MiddlewareFunc) RouteInfo {

Callers

nothing calls this directly

Calls 1

AddMethod · 0.95

Tested by

no test coverage detected