Skip to main content

rusty_commit/utils/
mod.rs

1//! Utility modules for rusty-commit.
2//!
3//! This module organizes various utility functions and helpers used throughout
4//! the application. Each submodule focuses on a specific responsibility.
5
6pub mod commit_style;
7pub mod diff_chunking;
8pub mod hooks;
9pub mod retry;
10pub mod thinking_strip;
11pub mod token;
12pub mod version;
13
14// Re-export commonly used functions for convenience
15pub use diff_chunking::chunk_diff;
16pub use thinking_strip::strip_thinking;