9 lines
176 B
Rust
Raw Normal View History

2021-12-08 14:17:40 +08:00
pub mod edit;
pub mod revision;
2021-12-20 15:37:37 +08:00
mod web_socket;
2021-12-25 21:44:45 +08:00
pub use crate::services::ws_receivers::*;
2021-12-16 21:31:36 +08:00
pub use edit::*;
pub use revision::*;
2021-12-15 16:28:18 +08:00
2021-12-18 18:35:45 +08:00
pub const SYNC_INTERVAL_IN_MILLIS: u64 = 1000;