summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index b43a401..35c0ffb 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -184,6 +184,12 @@ async fn main() -> Result<()> {
crate::commands::tree_of(matches, repo, progressbars).await?
}
+ Some(("metrics", _)) => {
+ let repo = load_repo()?;
+ let conn = crate::db::establish_connection(db_connection_config)?;
+ crate::commands::metrics(&repo_path, &config, repo, conn).await?
+ }
+
Some((other, _)) => return Err(anyhow!("Unknown subcommand: {}", other)),
None => return Err(anyhow!("No subcommand")),
}