diff --git a/src/cli/mod.rs b/src/cli/mod.rs new file mode 100644 index 0000000..8264849 --- /dev/null +++ b/src/cli/mod.rs @@ -0,0 +1,13 @@ +pub mod args; +pub mod commands; + +pub use args::Args; +pub use args::Commands; +pub use args::CommitType; + +use anyhow::Result; + +pub async fn run() -> Result<()> { + let args = Args::parse(); + commands::execute(args).await +}