Neo-Poseidon/main.rs

12 lines
215 B
Rust
Raw Normal View History

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