blobstore_azure_provider/
main.rs

1
2
3
4
5
6
7
8
9
10
use anyhow::Context as _;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    wasmcloud_provider_blobstore_azure::run()
        .await
        .context("failed to run provider")?;
    eprintln!("Blobstore Azure Provider exiting");
    Ok(())
}