commit-wizard 0.0.2

A lightweight CLI assistant for Conventional Commits, semantic versioning, and changelog automation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod bootstrap;
pub mod context;
pub mod error;
pub mod usecases;

pub use context::Context;
pub use error::CoreResult;
pub use error::exit_code;
pub use error::report_error;

pub use usecases::*;