commit-wizard 0.0.1

A lightweight CLI assistant for Conventional Commits, semantic versioning, and changelog automation.
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Debug, Error)]
pub enum DomainError {
    #[error("summary cannot be empty")]
    EmptySummary,
    #[error("summary too long (max {0} chars)")]
    SummaryTooLong(usize),
}