(&self)
| 64 | |
| 65 | impl Command for GrantCmd { |
| 66 | fn run(&self) -> CliResult<()> { |
| 67 | match &self.command { |
| 68 | GrantSubcommand::List(cmd) => cmd.run(), |
| 69 | GrantSubcommand::Add(cmd) => cmd.run(), |
| 70 | GrantSubcommand::Remove(cmd) => cmd.run(), |
| 71 | } |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | // --------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected