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