flodgatt/src/response.rs

10 lines
230 B
Rust

//! Stream the updates appropriate for a given `User`/`timeline` pair from Redis.
pub mod redis;
pub mod stream;
pub use redis::{Manager, ManagerErr};
#[cfg(feature = "bench")]
pub use redis::msg::{RedisMsg, RedisParseOutput};