ferrous_forge/git_hooks/
mod.rs

1//! Git hooks installation and management
2//!
3//! This module provides functionality to install and manage git hooks
4//! for automatic validation on commits.
5
6mod installer;
7mod scripts;
8
9pub use installer::{install_git_hooks, uninstall_git_hooks};