1
2
3
4
5
6
7
8
/// Re-exporting `std::process`.
pub use std::process;

/// Re-exporting, common, necessary types from [`clap`].(https://github.com/clap-rs/clap)
pub use clap::{AppSettings, Arg, ArgMatches, SubCommand};

/// Type alias for a `clap::App`.
pub type App = clap::App<'static, 'static>;