pub trait GitConfig {
// Required method
fn rewrite<'life0, 'async_trait>(
&'life0 self,
path: String,
) -> Pin<Box<dyn Future<Output = PathBuf> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}