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

Method TRACE

group.go:67–69  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

65
66// TRACE implements `Echo#TRACE()` for sub-routes within the Group. Panics on error.
67func (g *Group) TRACE(path string, h HandlerFunc, m ...MiddlewareFunc) RouteInfo {
68 return g.Add(http.MethodTrace, path, h, m...)
69}
70
71// Any implements `Echo#Any()` for sub-routes within the Group. Panics on error.
72func (g *Group) Any(path string, handler HandlerFunc, middleware ...MiddlewareFunc) RouteInfo {

Callers

nothing calls this directly

Calls 1

AddMethod · 0.95

Tested by

no test coverage detected