summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index ca642b8..a896313 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -147,6 +147,11 @@ async fn main() -> Result<()> {
crate::commands::lint(&repo_path, matches, progressbars, &config, repo).await?
}
+ Some(("tree-of", matches)) => {
+ let repo = load_repo()?;
+ crate::commands::tree_of(matches, repo, progressbars).await?
+ }
+
Some((other, _)) => return Err(anyhow!("Unknown subcommand: {}", other)),
None => return Err(anyhow!("No subcommand")),
}