Attribute Macro catalyzer::main

#[main]
Expand description

Marks a function as the main entry point for the application.

§Example

#[main]
fn main() {
    // Your code here (can be both sync and async)
}