swift_bridge_cli/lib.rs
1//! # The swift-bridge CLI.
2
3#![deny(missing_docs)]
4
5mod clap_app;
6mod clap_exec;
7
8/// Contains everything related parsing command input and executing
9pub mod app {
10 pub use crate::clap_app::*;
11 pub use crate::clap_exec::*;
12
13 /// Execute the CLI
14 pub fn run() {
15 handle_matches(cli().get_matches());
16 }
17}