wasccgraph_actor/
lib.rs

1#![doc(html_logo_url = "https://avatars0.githubusercontent.com/u/52050279?s=200&v=4")]
2//! # waSCC Graph Database Actor API
3//!
4//! The WebAssembly Secure Capabilities Connector (waSCC) API for Graph Database actors
5//! enables actors to communicate with graph capability providers in a secure, loosely-coupled
6//! fashion.
7//!
8//! For examples and tutorials on using the actor APIs, check out [wascc.dev](https://wascc.dev).
9extern crate wasccgraph_common as common;
10
11pub use common::{FromTable, GraphResult};
12
13pub mod graph;