Skip to main content

shadow_core/store/
mod.rs

1//! Content-addressed filesystem blob store and SQLite index.
2//!
3//! See SPEC.md §8 and SPEC §8 (sharding) for the on-disk format.
4
5pub mod fs;
6pub mod sqlite;
7
8pub use fs::{Store, StoreError};
9pub use sqlite::{Index, IndexError, ReplayRecord, TraceRecord};