mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-08 10:42:37 +00:00
15 lines
172 B
Rust
15 lines
172 B
Rust
#![feature(plugin)]
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate rocket;
|
|
|
|
#[get("/<todo>")]
|
|
fn todo(todo: &str) -> &str {
|
|
todo
|
|
}
|
|
|
|
fn main() {
|
|
let _ = routes![todo];
|
|
}
|
|
|