flodgatt/src/redis_to_client_stream/mod.rs

10 lines
266 B
Rust

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