From 53d7ac75937a2211d0b4cae3734801fd378488dc Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 19:59:20 +0000 Subject: [PATCH] Initial commit: git-issue-commit CLI tool --- src/cli/mod.rs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/cli/mod.rs 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 +}