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.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/sq/src/sq.rs b/sq/src/sq.rs
index 09412793..8f13deb3 100644
--- a/sq/src/sq.rs
+++ b/sq/src/sq.rs
@@ -498,6 +498,8 @@ fn main() -> Result<()> {
("key", Some(m)) => match m.subcommand() {
("generate", Some(m)) => commands::key::generate(m, force)?,
("adopt", Some(m)) => commands::key::adopt(m, policy)?,
+ ("attest-certifications", Some(m)) =>
+ commands::key::attest_certifications(m, policy)?,
_ => unreachable!(),
},