1 2 3 4 5 6 7 8 9 10 11 12
mod cache; mod client; mod error; mod options; pub use cache::Cache; pub use error::CacheError; pub use options::CacheOptions; pub fn create_cache(options: CacheOptions) -> Cache { Cache::new(options) }