DELETE creates a route using the DELETE HTTP method. See GET.
(path string)
| 309 | |
| 310 | // DELETE creates a route using the DELETE HTTP method. See GET. |
| 311 | func DELETE(path string) *expr.RouteExpr { |
| 312 | return route("DELETE", path) |
| 313 | } |
| 314 | |
| 315 | // OPTIONS creates a route using the OPTIONS HTTP method. See GET. |
| 316 | func OPTIONS(path string) *expr.RouteExpr { |