#![doc = include_str!("../README.md")]
/// convenience re-export of the clap crate
pub use clap;
/// convenience re-export of the rustyline crate
pub use rustyline;
pub use clap::{Arg, ArgMatches, Command, ValueHint};
mod handler;
pub use handler::{Callback, ClapCmdResult};
mod async_stdout;
mod helper;
mod builder;
pub use builder::ClapCmdBuilder;
mod shell_parser;
mod cmd;
pub use cmd::ClapCmd;