cal_redis/lib.rs
1// File: cal-redis/src/lib.rs - Improved module structure
2
3pub mod account;
4pub mod cache;
5pub mod region;
6pub mod redis_cache;
7pub mod local_cache;
8pub mod common;
9pub mod proxy;
10pub mod user;
11pub mod redis_ops;
12pub mod constants;
13pub mod helpers;
14
15pub use account::*;
16pub use region::*;
17pub use cache::*;
18pub use proxy::*;
19pub use user::*;
20pub use redis_ops::*;
21pub use constants::*;
22pub use helpers::*;
23
24// Re-export Redis types that consumers might need
25pub use redis::{RedisError, AsyncCommands, aio::MultiplexedConnection};