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
10
11
//! Statistics collection and aggregation module

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

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