1pub mod config; 2pub mod error; 3pub mod support; 4pub mod traits; 5 6pub type CacheResult<T, E = error::Error> = Result<T, E>; 7 8pub struct Cache { 9 driver: Box<dyn traits::CacheDriver>, 10 config: config::Cache, 11} 12 13// re-export 14pub use ayun_core::*;