git-cz 0.4.3

Git conventional commit tools written in Rust
1
2
3
4
5
6
7
8
9
10
use crate::{conventional::Config, Error};

mod changelog;
mod check;
mod commit;
mod version;

pub(crate) trait Command {
    fn exec(&self, config: Config) -> Result<(), Error>;
}