mdb/lib.rs
1//! Magam Timeseries Datastore
2
3/// Datastore Folder Layout Handler
4pub mod path_builder;
5
6/// An Entry in the datastore
7pub mod tick;
8pub use tick::Tick;
9
10/// Radix Tree Index
11pub mod index;
12
13pub mod frame;
14pub use frame::Frame;
15
16mod data_file;
17pub use data_file::DataFile;
18
19pub mod epoch;
20pub use epoch::Epoch;
21
22mod error;
23pub use error::{Error, Result};
24
25mod db;
26pub use db::Magma;