cal-redis 0.1.80

Callable Redis Implementation
Documentation
// File: cal-redis/src/lib.rs - Improved module structure

pub mod account;
pub mod cache;
pub mod region;
pub mod redis_cache;
pub mod local_cache;
pub mod common;
pub mod proxy;
pub mod user;
pub mod redis_ops;
pub mod constants;
pub mod helpers;

pub use account::*;
pub use region::*;
pub use cache::*;
pub use proxy::*;
pub use user::*;
pub use redis_ops::*;
pub use constants::*;
pub use helpers::*;

// Re-export Redis types that consumers might need
pub use redis::{RedisError, AsyncCommands, aio::MultiplexedConnection};