summaryrefslogtreecommitdiffstats
path: root/sq/src/sq.rs
diff options
context:
space:
mode:
Diffstat (limited to 'sq/src/sq.rs')
-rw-r--r--sq/src/sq.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/sq/src/sq.rs b/sq/src/sq.rs
index 94ec6e11..a794f8a9 100644
--- a/sq/src/sq.rs
+++ b/sq/src/sq.rs
@@ -390,6 +390,8 @@ impl Config<'_> {
}
}
+// TODO: Use `derive`d command structs. No more values_of
+// TODO: Handling (and cli position) of global arguments
fn main() -> Result<()> {
let policy = &mut P::new();
@@ -569,6 +571,7 @@ fn main() -> Result<()> {
&mut output, signatures, certs)?;
},
+ // TODO: Extract body to commands/armor.rs
Some(("armor", m)) => {
use clap::FromArgMatches;
let command = sq_cli::ArmorCommand::from_arg_matches(m)?;