Attribute Macro actix_web_codegen::main

source · []
#[main]
Expand description

Marks async main function as the Actix Web system entry-point.

Examples

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