1 2 3 4 5 6 7 8 9 10
use anyhow::Context as _; #[tokio::main] async fn main() -> anyhow::Result<()> { wasmcloud_provider_blobstore_s3::run() .await .context("failed to run provider")?; eprintln!("Blobstore S3 Provider exiting"); Ok(()) }