keyvalue_nats_provider/
main.rs

1//! NATS implementation of the wasmcloud "wrpc:keyvalue" capability contract
2
3use anyhow::Context as _;
4
5#[tokio::main]
6async fn main() -> anyhow::Result<()> {
7    wasmcloud_provider_keyvalue_nats::run()
8        .await
9        .context("failed to run provider")?;
10    eprintln!("NATS Kv provider exiting");
11    Ok(())
12}