fixity 0.0.1

Storage for structured and unstructured data backed by an immutable storage engine
1
2
3
4
5
6
7
8
9
//! A [`crate::prolly`] reference implementation.
pub mod create;
pub mod read;
pub mod update;
pub use {
    create::Create,
    read::Read,
    update::{Change, Update},
};