app.rs 267 B

1234567891011121314151617
  1. use held_core::interface::app::App;
  2. use crate::application::Application;
  3. impl App for Application {
  4. fn exit(&mut self) {
  5. todo!()
  6. }
  7. fn to_insert_mode(&mut self) {
  8. todo!()
  9. }
  10. fn to_normal_mode(&mut self) {
  11. todo!()
  12. }
  13. }