1 2 3 4 5 6 7 8 9 10 11 12
//! A command library that lives in your shell. pub mod cli; pub mod console; pub mod model; pub mod params; pub mod search; pub mod shell; pub mod store; pub mod sync; pub mod tui; pub mod update;