2017-08-29 03:14:59 +00:00
|
|
|
#![feature(plugin, decl_macro)]
|
2016-09-09 03:38:58 +00:00
|
|
|
#![plugin(rocket_codegen)]
|
2016-03-22 23:27:12 +00:00
|
|
|
|
|
|
|
extern crate rocket;
|
|
|
|
|
2016-10-17 22:14:57 +00:00
|
|
|
#[cfg(test)] mod tests;
|
|
|
|
|
2016-09-04 08:05:17 +00:00
|
|
|
#[get("/")]
|
2016-09-23 04:29:03 +00:00
|
|
|
fn hello() -> &'static str {
|
2016-03-22 23:27:12 +00:00
|
|
|
"Hello, world!"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2016-10-04 02:48:33 +00:00
|
|
|
rocket::ignite().mount("/", routes![hello]).launch();
|
2016-03-22 23:27:12 +00:00
|
|
|
}
|