PUT creates a route using the PUT HTTP method. See GET.
(path string)
| 304 | |
| 305 | // PUT creates a route using the PUT HTTP method. See GET. |
| 306 | func PUT(path string) *expr.RouteExpr { |
| 307 | return route("PUT", path) |
| 308 | } |
| 309 | |
| 310 | // DELETE creates a route using the DELETE HTTP method. See GET. |
| 311 | func DELETE(path string) *expr.RouteExpr { |