PATCH implements `Echo#PATCH()` for sub-routes within the Group. Panics on error.
(path string, h HandlerFunc, m ...MiddlewareFunc)
| 50 | |
| 51 | // PATCH implements `Echo#PATCH()` for sub-routes within the Group. Panics on error. |
| 52 | func (g *Group) PATCH(path string, h HandlerFunc, m ...MiddlewareFunc) RouteInfo { |
| 53 | return g.Add(http.MethodPatch, path, h, m...) |
| 54 | } |
| 55 | |
| 56 | // POST implements `Echo#POST()` for sub-routes within the Group. Panics on error. |
| 57 | func (g *Group) POST(path string, h HandlerFunc, m ...MiddlewareFunc) RouteInfo { |