[][src]Function azure_functions::worker_main

pub fn worker_main(
    args: impl Iterator<Item = String>,
    functions: &[&'static Function]
)

The main entry point for the Azure Functions for Rust worker.

Examples

This example is not tested
fn main() {
    azure_functions::worker_main(::std::env::args(), export!{
        my_module::my_function
    });
}