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