ws_sdk/database/mod.rs
1//! Interact with database in the wasm.
2//!
3//! ## Usage
4//!
5//! This module contains utility methods to write and read the database.
6//!
7//! The functions provided are synchronous. The wasm will be blocked until
8//! the result is returned from the database.
9//!
10//!
11
12/// key-value database module.
13pub mod kv;
14/// SQL database module.
15pub mod sql;
16mod sql_types;