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.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/sq/src/sq.rs b/sq/src/sq.rs
index bb481065..326958b0 100644
--- a/sq/src/sq.rs
+++ b/sq/src/sq.rs
@@ -706,6 +706,14 @@ fn main() -> Result<()> {
commands::certify::certify(config, m)?;
},
+ Some(("foo", m)) => {
+ use clap::FromArgMatches;
+ let fc = sq_cli::FooCommand::from_arg_matches(m)?;
+ println!("hello foo :), {:?}", fc)
+ }
+ Some((_, m)) => {
+ println!("hello :), {:?}", m)
+ }
_ => unreachable!(),
}