style: delete comment

This commit is contained in:
Sebastian Pravda 2022-12-14 18:31:21 +01:00
parent 96a93dad3a
commit 214fb72b83
No known key found for this signature in database
GPG key ID: F3BC84F08EFA3F57

View file

@ -257,7 +257,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
let output = sub_matches.get_one::<PathBuf>("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::<Url>("database").unwrap();
let db = get_db_conn(sub_matches).await?;
let key = get_admin_private_key(&db, sub_matches).await?;