humanize_cli_core/lib.rs
1//! Humanize Core Library
2//!
3//! This library provides the core functionality for the Humanize plugin workflows,
4//! including state management, file operations, git interactions, and hook validation.
5
6pub mod codex;
7pub mod constants;
8pub mod fs;
9pub mod git;
10pub mod hooks;
11pub mod state;
12pub mod template;
13
14pub use constants::*;
15pub use state::State;