1//! Cache module for candle-coreml 2//! 3//! This module provides cache management functionality including: 4//! - Model file caching 5//! - Configuration caching 6//! - Cache cleanup utilities 7 8pub mod manager; 9 10// Re-export main types for convenience 11pub use manager::CacheManager;