cache_fn/
lib.rs

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