1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
pub mod app;
pub mod args;
pub mod sub;

pub fn main() {
    use pipe_trait::*;
    use structopt_utilities::StructOptUtils;
    args::Args::strict_from_args()
        .pipe(app::App::from_args)
        .exec()
}

pub use structopt_utilities::{self, clap, structopt};