10
src/draft.rs
Normal file
10
src/draft.rs
Normal file
@@ -0,0 +1,10 @@
|
||||
#[derive(Default)]
|
||||
pub struct Draft {
|
||||
pub buffer: String,
|
||||
}
|
||||
|
||||
impl Draft {
|
||||
pub fn new() -> Self {
|
||||
Draft::default()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user