workspace.rs 78 B

12345
  1. pub trait Workspace {
  2. fn save_file(&mut self);
  3. fn undo(&mut self);
  4. }