repl_block/
lib.rs

1//!
2
3mod cmd;
4mod repl;
5mod error;
6mod history;
7mod macros;
8
9pub mod prelude {
10    pub use camino::{Utf8Path, Utf8PathBuf};
11    pub use crate::{
12        repl::{Repl, ReplBuilder},
13        error::{ReplBlockError, ReplBlockResult},
14    };
15    pub use crossterm::style::{Color, Stylize};
16}