codemp/src/buffer/mod.rs

12 lines
414 B
Rust
Raw Normal View History

2024-09-04 21:37:35 +02:00
//! ### Buffer
//! A buffer is a container of text, modifiable in sync by users.
//! It is built on top of [diamond_types] CRDT, guaranteeing that all peers which have received the
//! same set of operations will converge to the same content.
2023-08-20 00:46:55 +02:00
/// controller worker implementation
pub(crate) mod worker;
/// buffer controller implementation
pub mod controller;
pub use controller::BufferController as Controller;