gitcoco 0.1.11

GitCoco: A Rust-based CLI for Conventional Commits, making commit standardization effortless and consistent for seamless project versioning and collaboration.
1
2
3
4
5
6
7
8
9
10
11
use crate::conventional::Config;

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

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