monk 0.2.0

Monk is a simple Git hooks manager written in Rust. It allows you to manage and automate Git hooks easily using a YAML configuration file.
Documentation
1
2
3
4
5
6
fn main() {
    std::process::Command::new("sh")
        .arg("cargo run -- install")
        .status()
        .expect("Failed to install hooks");
}