#[macro_use] extern crate rocket; mod config; #[launch] fn rocket() -> _ { rocket::build().mount("/", routes![index]) } #[get("/")] fn index() -> &'static str { "Hello, world!" }