(&self)
| 136 | |
| 137 | impl Command for Goal { |
| 138 | fn run(&self) -> CliResult<()> { |
| 139 | match &self.command { |
| 140 | GoalCommands::Start(cmd) => cmd.run(), |
| 141 | GoalCommands::Stop(cmd) => cmd.run(), |
| 142 | GoalCommands::Resume(cmd) => cmd.run(), |
| 143 | GoalCommands::List(cmd) => cmd.run(), |
| 144 | GoalCommands::Show(cmd) => cmd.run(), |
| 145 | } |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | // goal start |
nothing calls this directly
no test coverage detected