DELETE implements `Echo#DELETE()` for sub-routes within the Group. Panics on error.
(path string, h HandlerFunc, m ...MiddlewareFunc)
| 30 | |
| 31 | // DELETE implements `Echo#DELETE()` for sub-routes within the Group. Panics on error. |
| 32 | func (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. |
| 37 | func (g *Group) GET(path string, h HandlerFunc, m ...MiddlewareFunc) RouteInfo { |