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