guardy 0.2.4

Fast, secure git hooks in Rust with secret scanning and protected file synchronization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use anyhow::Result;

mod cli;
mod config;
mod git;
mod hooks;
mod scan;
mod shared;
mod sync;

#[tokio::main]
async fn main() -> Result<()> {
    cli::init().run().await
}
// Test
// Test