ayun_console/lib.rs
1pub mod error;
2pub mod support;
3pub mod traits;
4
5#[derive(Clone)]
6pub struct Console {
7 inner: clap::Command,
8 commands: std::collections::BTreeMap<String, clap::Command>,
9 closures: std::collections::HashMap<String, Callback<clap::ArgMatches, Result<()>>>,
10}
11
12// re-export
13pub use ayun_core::*;