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:26 +00:00
parent 67d5d29296
commit 49a8c948f0

6
src/main.rs Normal file
View File

@@ -0,0 +1,6 @@
use anyhow::Result;
#[tokio::main]
async fn main() -> Result<()> {
git_issue_commit::run().await
}