Initial commit: git-issue-commit CLI tool
This commit is contained in:
13
src/cli/mod.rs
Normal file
13
src/cli/mod.rs
Normal 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
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user