rs-kilo/src/editor.rs

11 lines
124 B
Rust
Raw Normal View History

2019-08-22 14:25:18 -04:00
//! Editor functionality
pub struct Editor {}
impl Editor {
pub fn new() -> Self {
Editor {
}
}
}