1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # The swift-bridge CLI.

#![deny(missing_docs)]

mod clap_app;
mod clap_exec;

/// Contains everything related parsing command input and executing
pub mod app {
    pub use crate::clap_app::*;
    pub use crate::clap_exec::*;

    /// Execute the CLI
    pub fn run() {
        handle_matches(cli().get_matches());
    }
}