#[macro_use] extern crate rocket; extern crate lazy_static; use melly_valentines::randoms::random_saying; #[get("/")] fn a()->String{random_saying()} #[launch] fn rocket()->_{rocket::build().mount("/",routes![a])}