mirror of
https://github.com/hexedtech/codemp.git
synced 2025-04-08 12:31:34 +02:00
12 lines
174 B
Rust
12 lines
174 B
Rust
use std::ops::Range;
|
|
|
|
pub(crate) mod worker;
|
|
pub mod controller;
|
|
pub mod factory;
|
|
|
|
|
|
#[derive(Debug)]
|
|
pub struct TextChange {
|
|
pub span: Range<usize>,
|
|
pub content: String,
|
|
}
|