entrypoint

Attribute Macro entrypoint 

Source
#[entrypoint]
Expand description

Use this macro to annotate the configuration function for you custom policy.

#[entrypoint]
async fn configure(
    launcher: Launcher,
    Configuration(configuration): Configuration,
) -> anyhow::Result<()> {
    ...
}