1pub mod app;
2pub mod args;
3pub mod sub;
4
5pub fn main() {
6 use pipe_trait::*;
7 use structopt_utilities::StructOptUtils;
8 args::Args::strict_from_args()
9 .pipe(app::App::from_args)
10 .exec()
11}
12
13pub use structopt_utilities::{self, clap, structopt};