From 3a4de13528fc85dcbe6bc9055d97ba5cc87f5712 Mon Sep 17 00:00:00 2001 From: benj Date: Thu, 8 Dec 2022 11:16:32 -0800 Subject: update schema to `secd` add dummy `dev` command to cli --- crates/iam/src/api.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'crates/iam/src') diff --git a/crates/iam/src/api.rs b/crates/iam/src/api.rs index 5819533..5b72d93 100644 --- a/crates/iam/src/api.rs +++ b/crates/iam/src/api.rs @@ -68,6 +68,14 @@ pub enum Command { #[command(subcommand)] object: CreateObject, }, + #[command( + about = "Utility and convenience commands while developing against secd", + long_about = "Dev\n\nUtility and convenience commands while developing against secd. Easily retrieve local mail, monitor secd logs, and otherwise inspect or interact with the system." + )] + Dev { + #[command(subcommand)] + object: DevObject, + }, #[command( about = "Get details for a specific IAM object", long_about = "Get\n\nGet details for a specific IAM object" @@ -311,6 +319,9 @@ pub enum CreateObject { }, } +#[derive(Subcommand)] +pub enum DevObject {} + #[derive(Subcommand)] pub enum ValidationMethod { /// An email address to which the validation will be sent -- cgit v1.2.3