kodo 0.6.2

A CLI tool for analyzing Git commit statistics with TUI visualization
Documentation
1
2
3
4
5
6
7
8
9
//! Git repository interface module

pub mod commit;
pub mod diff;
pub mod repository;

pub use commit::CommitInfo;
pub use diff::{DiffStats, FileChange};
pub use repository::Repository;