codemp/src/buffer/mod.rs
zaaarf d25e744a37
docs: improved cargo docs, rewrote readme
Co-authored-by: alemi <me@alemi.dev>
2024-09-05 01:45:48 +02:00

11 lines
414 B
Rust

//! ### 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.
/// controller worker implementation
pub(crate) mod worker;
/// buffer controller implementation
pub mod controller;
pub use controller::BufferController as Controller;