Skip to main content

flake_edit/
app.rs

1pub mod commands;
2pub mod editor;
3pub mod error;
4pub mod handler;
5pub mod state;
6
7pub use error::{Error, Result};
8pub use handler::run;
9pub use state::AppState;