10 lines
171 B
Rust
Raw Normal View History

2022-01-14 15:23:21 +08:00
mod editor;
mod queue;
2021-12-20 15:37:37 +08:00
mod web_socket;
2022-01-05 23:15:55 +08:00
2022-01-14 15:23:21 +08:00
pub use editor::*;
pub(crate) use queue::*;
pub(crate) use web_socket::*;
2021-12-15 16:28:18 +08:00
2022-01-22 18:48:43 +08:00
pub const DOCUMENT_SYNC_INTERVAL_IN_MILLIS: u64 = 1000;