2022-01-05 23:15:55 +08:00

10 lines
167 B
Rust

pub mod edit;
pub mod revision;
mod web_socket;
pub use crate::ws_receivers::*;
pub use edit::*;
pub use revision::*;
pub const SYNC_INTERVAL_IN_MILLIS: u64 = 1000;