extern crate rocket; use rocket::{get,launch, build, routes}; #[get("/")] fn index() -> &'static str { "Hewwo wowd :3" } #[launch] fn rocket() -> _ { build().mount("/", routes![index]) }