POST creates a route using the POST HTTP method. See GET.
(path string)
| 299 | |
| 300 | // POST creates a route using the POST HTTP method. See GET. |
| 301 | func POST(path string) *expr.RouteExpr { |
| 302 | return route("POST", path) |
| 303 | } |
| 304 | |
| 305 | // PUT creates a route using the PUT HTTP method. See GET. |
| 306 | func PUT(path string) *expr.RouteExpr { |