codemp/src/buffer/mod.rs

12 lines
157 B
Rust
Raw Normal View History

use std::ops::Range;
pub(crate) mod worker;
pub mod controller;
pub mod factory;
pub struct TextChange {
pub span: Range<usize>,
pub content: String,
}