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