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

Method DELETE

group.go:32–34  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

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 {
33 return g.Add(http.MethodDelete, path, h, m...)
34}
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 {

Callers

nothing calls this directly

Calls 1

AddMethod · 0.95

Tested by

no test coverage detected