indra_db 0.1.10

A content-addressed graph database for versioned thoughts
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Core data model types for indra_db

mod commit;
mod edge;
mod hash;
mod thought;

pub use commit::Commit;
pub use edge::{Edge, EdgeType};
pub use hash::Hash;
pub use thought::{JsonValue, Thought, ThoughtId};