Any implements `Echo#Any()` for sub-routes within the Group. Panics on error.
(path string, handler HandlerFunc, middleware ...MiddlewareFunc)
| 70 | |
| 71 | // Any implements `Echo#Any()` for sub-routes within the Group. Panics on error. |
| 72 | func (g *Group) Any(path string, handler HandlerFunc, middleware ...MiddlewareFunc) RouteInfo { |
| 73 | return g.Add(RouteAny, path, handler, middleware...) |
| 74 | } |
| 75 | |
| 76 | // Match implements `Echo#Match()` for sub-routes within the Group. Panics on error. |
| 77 | func (g *Group) Match(methods []string, path string, handler HandlerFunc, middleware ...MiddlewareFunc) Routes { |