1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
/// Module that contains core editor functionalities.
pub mod editor;
/// Module that handles rendering the editor.
pub mod renderer;

mod error;

mod util;

/// The `minime` result type.
pub use error::Result;

/// Re-export of crossterm crate.
pub use crossterm;