realtime_rs/
lib.rs

1use tokio::sync::oneshot;
2
3pub(crate) const DEBUG: bool = false;
4pub(crate) type Responder<T> = oneshot::Sender<T>;
5
6pub mod message;
7pub mod realtime_channel;
8pub mod realtime_client;
9pub mod realtime_presence;