10 lines
167 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;
2022-01-05 23:15:55 +08:00
2022-01-04 15:05:52 +08:00
pub use crate::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;