//! Cache connections from a [`CacheConfig`](klauthed_core::config::CacheConfig).
//!
//! * `redis` feature → [`connect_redis`], a managed async Redis connection.
//! * `cache-memory` feature → `build_memory_cache`, an in-process moka cache.
pub use connect as connect_redis;
pub use build_memory_cache;