pub mod bitmask;
pub mod blob;
pub mod config;
pub mod error;
pub mod fixtures;
mod gridstore;
mod pages;
mod tracker;
pub use blob::Blob;
use crate::common::universal_io::MmapFile;
pub use gridstore::{Gridstore, GridstoreReader, GridstoreView};
use crate::gridstore::error::GridstoreError;
pub(crate) type Result<T> = std::result::Result<T, GridstoreError>;
pub(crate) type TrackerMmap = tracker::Tracker<MmapFile>;