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

Method PUT

group.go:62–64  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

60
61// PUT implements `Echo#PUT()` for sub-routes within the Group. Panics on error.
62func (g *Group) PUT(path string, h HandlerFunc, m ...MiddlewareFunc) RouteInfo {
63 return g.Add(http.MethodPut, path, h, m...)
64}
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 {

Callers

nothing calls this directly

Calls 1

AddMethod · 0.95

Tested by

no test coverage detected