Skip to main content

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//!
6//! @task T017
7//! @epic T014
8
9mod installer;
10mod scripts;
11
12pub use installer::{check_hooks_status, install_git_hooks, uninstall_git_hooks};