mirror of https://github.com/rwf2/Rocket.git
15 lines
171 B
Rust
15 lines
171 B
Rust
|
#![feature(plugin)]
|
||
|
#![plugin(rocket_macros)]
|
||
|
|
||
|
extern crate rocket;
|
||
|
|
||
|
#[get("/<todo>")]
|
||
|
fn todo(todo: &str) -> &str {
|
||
|
todo
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let _ = routes![todo];
|
||
|
}
|
||
|
|