web3-proxy/redis-cell-client/src/lib.rs

8 lines
174 B
Rust
Raw Normal View History

mod client;
2022-05-22 21:39:06 +03:00
pub use client::RedisCellClient;
2022-05-28 07:26:24 +03:00
pub use redis;
// TODO: don't hard code MultiplexedConnection
2022-05-22 21:39:06 +03:00
pub use redis::aio::MultiplexedConnection;
pub use redis::Client;