pub trait GitCapabilities {
// Required methods
fn list_files(&self, root: &Path) -> Option<Vec<String>>;
fn churn_scores(&self, root: &Path) -> BTreeMap<String, f64>;
}Expand description
Git data needed by the scanner.
pub trait GitCapabilities {
// Required methods
fn list_files(&self, root: &Path) -> Option<Vec<String>>;
fn churn_scores(&self, root: &Path) -> BTreeMap<String, f64>;
}Git data needed by the scanner.