mirror of
https://github.com/rwf2/Rocket.git
synced 2024-12-28 13:22:38 +00:00
a6f5a63535
Co-authored-by: timokoesters <timo@koesters.xyz>
13 lines
146 B
Rust
13 lines
146 B
Rust
#[macro_use] extern crate rocket;
|
|
|
|
#[get("/<_>")]
|
|
fn i0() {}
|
|
|
|
#[get("/c?<_>")]
|
|
fn i1() {}
|
|
|
|
#[post("/d", data = "<_>")]
|
|
fn i2() {}
|
|
|
|
fn main() { }
|