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 a75a9d3..606a951 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -161,6 +161,12 @@ async fn main() -> Result<()> {
crate::commands::env_of(matches, repo).await?
}
+ Some(("find-artifact", matches)) => {
+ let repo = load_repo()?;
+ let conn = crate::db::establish_connection(db_connection_config)?;
+ crate::commands::find_artifact(matches, &config, progressbars, repo, conn, max_packages).await?
+ }
+
Some(("find-pkg", matches)) => {
let repo = load_repo()?;
crate::commands::find_pkg(matches, &config, repo).await?