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