mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-11 18:30:50 +00:00
10 lines
171 B
Rust
Executable File
10 lines
171 B
Rust
Executable File
mod editor;
|
|
mod queue;
|
|
mod web_socket;
|
|
|
|
pub use editor::*;
|
|
pub(crate) use queue::*;
|
|
pub(crate) use web_socket::*;
|
|
|
|
pub const DOCUMENT_SYNC_INTERVAL_IN_MILLIS: u64 = 1000;
|