CONNECT creates a route using the CONNECT HTTP method. See GET.
(path string)
| 324 | |
| 325 | // CONNECT creates a route using the CONNECT HTTP method. See GET. |
| 326 | func CONNECT(path string) *expr.RouteExpr { |
| 327 | return route("CONNECT", path) |
| 328 | } |
| 329 | |
| 330 | // PATCH creates a route using the PATCH HTTP method. See GET. |
| 331 | func PATCH(path string) *expr.RouteExpr { |