CONNECT registers a new CONNECT route for a path with matching handler in the router with optional route-level middleware. Panics on error.
(path string, h HandlerFunc, m ...MiddlewareFunc)
| 494 | // CONNECT registers a new CONNECT route for a path with matching handler in the |
| 495 | // router with optional route-level middleware. Panics on error. |
| 496 | func (e *Echo) CONNECT(path string, h HandlerFunc, m ...MiddlewareFunc) RouteInfo { |
| 497 | return e.Add(http.MethodConnect, path, h, m...) |
| 498 | } |
| 499 | |
| 500 | // DELETE registers a new DELETE route for a path with matching handler in the router |
| 501 | // with optional route-level middleware. Panics on error. |