(&self)
| 28 | |
| 29 | impl Command for Triage { |
| 30 | fn run(&self) -> CliResult<()> { |
| 31 | match &self.command { |
| 32 | TriageCommands::Candidates(cmd) => cmd.run(), |
| 33 | TriageCommands::Review(cmd) => cmd.run(), |
| 34 | } |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | /// Subcommands for `atomic triage`. |
nothing calls this directly
no test coverage detected