1
2
3
4
5
6
7
8
9
//! Conviniently handle and use IO arguments in your command line interface.

mod input;
mod io_arg;
mod output;

pub use self::input::Input;
pub use self::io_arg::IoArg;
pub use self::output::Output;