mycroft_support/storage/
mod.rs

1//! `storage` provides utilities for keeping storing and retrieving data, notably `Data` and
2//! `Tuples`
3//! Both are in-memory stores at the moment, but this module is where future disk stores will live
4//! as well.
5pub mod tuple;
6pub mod data;
7
8pub use self::tuple::{MergeRef, Provenance, Tuples};
9pub use self::data::Data;