cognee-storage 0.1.0

Pluggable file/blob storage abstraction (local filesystem + mock) for the cognee pipeline.
Documentation
//! Abstract file-storage layer for Cognee.
//!
//! Provides a trait-based interface for blob/file persistence so storage
//! backends can be swapped without touching the ingestion pipeline.
//!
//! - [`StorageTrait`] (+ [`StorageExt`], [`StorageWriter`]) — async storage operations
//! - [`LocalStorage`] — local-filesystem implementation using `file://` URIs
//! - `MockStorage` (feature `testing`) — in-memory implementation for tests

mod local_storage;
mod storage_trait;

#[cfg(feature = "testing")]
mod mock_storage;

pub use local_storage::LocalStorage;
pub use storage_trait::{StorageError, StorageExt, StorageTrait, StorageWriter};

#[cfg(feature = "testing")]
pub use mock_storage::MockStorage;