diff options
Diffstat (limited to 'crates/iam/src/api.rs')
| -rw-r--r-- | crates/iam/src/api.rs | 11 |
1 files changed, 11 insertions, 0 deletions
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 @@ -69,6 +69,14 @@ pub enum Command { 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" )] @@ -312,6 +320,9 @@ pub enum CreateObject { } #[derive(Subcommand)] +pub enum DevObject {} + +#[derive(Subcommand)] pub enum ValidationMethod { /// An email address to which the validation will be sent Email { |
