2018-06-28 15:55:15 +00:00
|
|
|
#![feature(plugin, decl_macro, proc_macro_non_items)]
|
2016-09-09 03:38:58 +00:00
|
|
|
#![plugin(rocket_codegen)]
|
2016-09-09 00:09:35 +00:00
|
|
|
|
2018-06-28 15:55:15 +00:00
|
|
|
#[macro_use] extern crate rocket;
|
2016-09-09 00:09:35 +00:00
|
|
|
|
|
|
|
#[get("/<todo>")]
|
2017-03-31 07:18:58 +00:00
|
|
|
fn todo(todo: String) -> String {
|
2016-09-09 00:09:35 +00:00
|
|
|
todo
|
|
|
|
}
|
|
|
|
|
2017-09-10 08:19:38 +00:00
|
|
|
#[test]
|
2016-09-09 00:09:35 +00:00
|
|
|
fn main() {
|
|
|
|
let _ = routes![todo];
|
|
|
|
}
|