1mod error;
2
3pub const VERSION: &str = "0.2.0";
5mod application;
12pub use application::{
13 App, AppContext, AppInfo, ComponentInfo, Context, ContextInfo, InputComponent, InputValue,
14 Output, OutputComponent, Parsed,
15};
16
17mod command;
18pub use command::{
19 Arg, ArgInfo, ArgKind, ArgType, Command, CommandInfo, Completer, Prompter, Validator,
20};
21mod io;
22pub use error::{Error, Result};
23pub use io::{InputEvent, Logger, OutputCommand, ReadEvent};
24
25pub mod prelude {
31 pub use crate::{
32 application::App,
34 };
35}