ic-nosql 0.1.3

A flexible NoSQL database library for Internet Computer canisters
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Database module providing core database functionality
//!
//! This module contains the main database implementation, database manager,
//! and all related types for the NoSQL database system.

pub use self::manager::DatabaseManager;
pub use self::nosql_db::Database;
pub use self::types::{CompositeKey, CompositeKeys, Document, QueryResponse};

pub mod manager;
pub mod nosql_db;
pub mod types;