1// store/mod.rs — public re-exports for the store sub-module. 2/// Memory-mapped vector file storage. 3pub mod mmap; 4/// SQLite persistence for vector records and collection metadata. 5pub mod sqlite; 6 7pub use sqlite::{SqliteStore, VectorStore};