Attribute Macro actix::main

source ·
#[main]
Expand description

Marks async main function as the actix system entry-point.

§Examples

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