(&self)
| 239 | |
| 240 | impl Command for Identity { |
| 241 | fn run(&self) -> CliResult<()> { |
| 242 | match &self.command { |
| 243 | IdentityCommands::New(cmd) => cmd.run(), |
| 244 | IdentityCommands::List(cmd) => cmd.run(), |
| 245 | IdentityCommands::Show(cmd) => cmd.run(), |
| 246 | IdentityCommands::Default(cmd) => cmd.run(), |
| 247 | IdentityCommands::Delete(cmd) => cmd.run(), |
| 248 | IdentityCommands::WhoAmI(cmd) => cmd.run(), |
| 249 | IdentityCommands::Register(cmd) => cmd.run(), |
| 250 | IdentityCommands::Sign(cmd) => cmd.run(), |
| 251 | IdentityCommands::Verify(cmd) => cmd.run(), |
| 252 | } |
| 253 | } |
| 254 | } |
| 255 | |
| 256 | // Default Subcommand |
nothing calls this directly
no test coverage detected