1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//!

mod cmd;
mod repl;
mod error;
mod history;
mod macros;

pub mod prelude {
    pub use camino::{Utf8Path, Utf8PathBuf};
    pub use crate::{
        repl::{Repl, ReplBuilder},
        error::{ReplBlockError, ReplBlockResult},
    };
    pub use crossterm::style::{Color, Stylize};
}