convco 0.6.4

Conventional commit tools
1
2
3
4
5
6
7
8
9
10
11
12
use crate::conventional::Config;

mod changelog;
mod check;
mod commit;
mod completions;
mod config;
mod version;

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