Skip to main content

MAIN_RS

Constant MAIN_RS 

Source
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())
}
"#;