1 2 3 4 5 6 7 8
//! Buffer system for terminal rendering #[allow(clippy::module_inception)] mod buffer; mod cell; pub use buffer::Buffer; pub use cell::Cell;