kodo 0.3.0

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

pub mod loader;
pub mod schema;

pub use loader::{
    default_config_path, default_config_path_for_save, expand_tilde, load_config, save_config,
};
pub use schema::{Config, Defaults, RepoConfig};