(&self)
| 176 | |
| 177 | impl Command for Intent { |
| 178 | fn run(&self) -> CliResult<()> { |
| 179 | match &self.command { |
| 180 | IntentCommands::Create(cmd) => cmd.run(), |
| 181 | IntentCommands::List(cmd) => cmd.run(), |
| 182 | IntentCommands::Show(cmd) => cmd.run(), |
| 183 | IntentCommands::Update(cmd) => cmd.run(), |
| 184 | IntentCommands::Delete(cmd) => cmd.run(), |
| 185 | IntentCommands::Link(cmd) => cmd.run(), |
| 186 | } |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | // Create Subcommand |
nothing calls this directly
no test coverage detected