Skip to main content

kardo_core/git/
mod.rs

1//! Git repository analysis — file history, commit metadata, and code-documentation coupling detection.
2
3pub mod analysis;
4pub mod coupling;
5
6pub use analysis::{GitAnalyzer, GitError, GitFileInfo};
7pub use coupling::{CouplingDetector, CouplingIssue};