Function azure_functions_codegen::main[][src]

pub fn main(input: TokenStream) -> TokenStream

Implements the main! macro.

The main! macro is used to register a list of Azure Functions with the Azure Functions host.

This macro expects a comma-separated list of functions that have the #[func] attribute applied.

Examples

This example is not tested
azure_functions::main!{
    module::my_azure_function
}