wasmCloud Key Value Store Actor Interface
This crate provides an interface for actors to use to communicate with a key-value
store capability provider. Actors using this interface must have the wasmcloud:keyvalue capability
permission.
This crate is one-way, and only supports actors making calls to the host. The capability provider does not deliver messages to actors (e.g. actors cannot subscribe to store change events).
The following is an example usage:
extern crate serde_json;
extern crate actor_http_server as http;
extern crate actor_keyvalue as kv;
use ;
use HandlerResult;
extern crate serde_json;