2019-01-23 14:17:04 +01:00
|
|
|
#![feature(proc_macro_hygiene, decl_macro)]
|
2018-10-08 23:03:19 +02:00
|
|
|
|
2019-01-23 14:17:04 +01:00
|
|
|
#[macro_use] extern crate rocket;
|
2018-10-08 23:03:19 +02:00
|
|
|
|
|
|
|
#[get("/")]
|
|
|
|
fn index() -> &'static str {
|
2019-01-23 14:17:04 +01:00
|
|
|
"Hello, world!"
|
2018-10-08 23:03:19 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 14:17:04 +01:00
|
|
|
fn main() {
|
|
|
|
rocket::ignite().mount("/", routes![index]).launch();
|
|
|
|
}
|