glint 6.3.4

a friendly tool for creating commits in the commitlint style
Documentation
mod cli;
mod commands;

use cli::Cli;
use glint::Config;

fn main() {
    let command = cli::parse();
    let config = Config::default();

    match command {
        Cli::Commit(params) => {
            commands::commit(params, config);
        }
        Cli::Log(params) => {
            commands::log(params, config);
        }
    }
}