mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-03 16:22:37 +00:00
15 lines
195 B
Rust
15 lines
195 B
Rust
#![feature(plugin, decl_macro)]
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate rocket;
|
|
|
|
#[get("/<todo>")]
|
|
fn todo(todo: String) -> String {
|
|
todo
|
|
}
|
|
|
|
#[test]
|
|
fn main() {
|
|
let _ = routes![todo];
|
|
}
|