From 214fb72b839917794f28a9e865f3f6bd050721c4 Mon Sep 17 00:00:00 2001 From: Sebastian Pravda Date: Wed, 14 Dec 2022 18:31:21 +0100 Subject: [PATCH] style: delete comment --- cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/main.rs b/cli/src/main.rs index 34ae161..fde048e 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -257,7 +257,7 @@ async fn main() -> Result<(), Box> { let output = sub_matches.get_one::("output").unwrap(); tokio::fs::write(output, decrypted).await?; }, - Some(("package", sub_matches)) => { // TODO: compress the output directory into one file??? + Some(("package", sub_matches)) => { let db_url = sub_matches.get_one::("database").unwrap(); let db = get_db_conn(sub_matches).await?; let key = get_admin_private_key(&db, sub_matches).await?;