kodo 0.4.0

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

pub mod aggregator;
pub mod collector;
pub mod types;

pub use aggregator::{filter_non_zero, merge_stats, running_totals};
pub use collector::collect_stats;
pub use types::{AnalysisResult, DateRange, Days, PeriodStats, TotalStats};