Initial commit: git-issue-commit CLI tool
Some checks failed
CI / test (push) Has been cancelled
CI / release (push) Has been cancelled

This commit is contained in:
2026-01-29 19:59:20 +00:00
parent 119a348ebe
commit 53d7ac7593

13
src/cli/mod.rs Normal file
View File

@@ -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
}