kodo 0.6.1

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_activity_stats, collect_stats};
pub use types::{ActivityStats, AnalysisResult, DateRange, Days, PeriodStats, TotalStats};