pub const MAIN_RS: &str = r#"#[macro_use] extern crate rocket; mod fairings; mod routes; #[launch] fn rocket() -> _ { rocket::build() .attach(fairings::Cors) .mount("/", routes::routes()) } "#;