2018-10-06 04:56:46 +00:00
|
|
|
#![feature(proc_macro_hygiene, decl_macro)]
|
2016-03-22 23:27:12 +00:00
|
|
|
|
2018-06-28 15:55:15 +00:00
|
|
|
#[macro_use] extern crate rocket;
|
2016-03-22 23:27:12 +00:00
|
|
|
|
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
|
|
|
}
|