11 lines
124 B
Rust
11 lines
124 B
Rust
|
//! Editor functionality
|
||
|
|
||
|
pub struct Editor {}
|
||
|
|
||
|
impl Editor {
|
||
|
pub fn new() -> Self {
|
||
|
Editor {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|