//! `clawsh` is a simple command-line shell implemented in Rust, designed to provide a basic REPL interface for executing commands, managing history, and supporting features like tab completion and command parsing.
/// Type alias for `Result` with the error type set to `ClawshError`
pub type Result<T> = Result;
pub use crateBUILTIN_COMMANDS;
pub use crateTrieCompleter;
use crateClawshError;
pub use crateShell;