gitkit-cli 0.1.0

Get insightful metrics on your git repository
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use thiserror::Error;

#[derive(Debug, Error)]
pub enum Error {
    #[error("git error: {0}")]
    GitError(#[from] git2::Error),

    #[error("io error: {0}")]
    IoError(#[from] std::io::Error),

    #[error("kit error: {0}")]
    KitError(String),

    #[error("ratatui error: {0}")]
    RatatuiError(String),
}

pub type Result<T> = std::result::Result<T, Error>;