pub trait ConfigValues {
// Required method
fn get_config_value(config: &GitConfig, key: &str) -> Result<Self, Error>
where Self: Sized;
}
pub trait ConfigValues {
// Required method
fn get_config_value(config: &GitConfig, key: &str) -> Result<Self, Error>
where Self: Sized;
}