cmt 0.4.2

CLI tool that generates commit messages using AI
Documentation
1
2
3
4
5
6
7
use cmt::template_mod::CommitTemplate;
use schemars::schema_for;

fn main() {
    let schema = schema_for!(CommitTemplate);
    println!("{}", serde_json::to_string_pretty(&schema).unwrap());
}