nestrs-cache-manager 0.1.0

Rust port of @nestjs/cache-manager backed by moka.
Documentation
1
2
3
4
5
6
7
8
9
//! Port map for upstream `lib/interfaces/index.ts`.

pub mod cache_manager_interface;
pub mod cache_module_interface;

pub use cache_manager_interface::CacheManagerOptions;
pub use cache_module_interface::{
    CacheModuleAsyncOptions, CacheModuleOptions, CacheOptions, CacheOptionsFactory,
};