Neo-Poseidon/main.rs
Daniel Løvbrøtte Olsen 111f4cc36e Fresh Start
2019-01-23 14:17:04 +01:00

12 lines
215 B
Rust

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