io_arg/
lib.rs

1//! Conviniently handle and use IO arguments in your command line interface.
2
3mod input;
4mod io_arg;
5mod output;
6
7pub use self::input::Input;
8pub use self::io_arg::IoArg;
9pub use self::output::Output;