rs-kilo/src/editor.rs

11 lines
124 B
Rust

//! Editor functionality
pub struct Editor {}
impl Editor {
pub fn new() -> Self {
Editor {
}
}
}