9 lines
160 B
Rust
Raw Normal View History

2021-12-08 14:17:40 +08:00
pub mod edit;
pub mod revision;
2021-11-13 11:11:24 +08:00
2021-12-18 18:35:45 +08:00
pub use crate::services::ws_handlers::*;
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;