commit-wizard 0.0.1

A lightweight CLI assistant for Conventional Commits, semantic versioning, and changelog automation.
Documentation
1
2
3
4
5
6
use anyhow::Result;
use commit_wizard::run_cli;

fn main() -> Result<()> {
    run_cli()
}