TRACE creates a route using the TRACE HTTP method. See GET.
(path string)
| 319 | |
| 320 | // TRACE creates a route using the TRACE HTTP method. See GET. |
| 321 | func TRACE(path string) *expr.RouteExpr { |
| 322 | return route("TRACE", path) |
| 323 | } |
| 324 | |
| 325 | // CONNECT creates a route using the CONNECT HTTP method. See GET. |
| 326 | func CONNECT(path string) *expr.RouteExpr { |