#[macro_use] extern crate rocket; use rocket::fs::{relative, FileServer}; mod place; mod routes; #[launch] fn rocket() -> _ { rocket::build() .mount("/", FileServer::from(relative!("static"))) .attach(routes::stage()) }