main

Attribute Macro main 

Source
#[main]
Expand description

Inits a traditional actix-web server entrypoint Note: this is only being done because we need to re-route the macro to point at rapid_web instead of actix

ยงExamples

#[rapid_web::main]
async fn main() {
    async { println!("Hello world"); }.await
}