1//! Storage layer: source-of-truth files plus derived indexes. 2 3pub mod files; 4pub mod index; 5pub mod search; 6 7pub use files::{FileStore, ParsedFile}; 8pub use index::{IndexRecord, RedbIndex}; 9pub use search::TantivySearch;