Attribute Macro main

Source
#[main]
Expand description

Marks async function to be executed by actix system.

ยงUsage

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