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
//! Output formatting module

pub mod csv;
pub mod format;
pub mod json;
pub mod table;

pub use csv::CsvFormatter;
pub use format::Formatter;
pub use json::JsonFormatter;
pub use table::TableFormatter;