Skip to main content

git_same/cache/
mod.rs

1//! Cache and history persistence.
2
3mod discovery;
4#[cfg(feature = "tui")]
5mod sync_history;
6
7pub use discovery::{CacheManager, DiscoveryCache, CACHE_VERSION};
8#[cfg(feature = "tui")]
9pub use sync_history::SyncHistoryManager;