(&self)
| 72 | |
| 73 | impl Command for Doctor { |
| 74 | fn run(&self) -> CliResult<()> { |
| 75 | match &self.command { |
| 76 | DoctorCommands::RepairDependencyIndex(cmd) => cmd.run(), |
| 77 | DoctorCommands::MaterializeCrdt(cmd) => cmd.run(), |
| 78 | DoctorCommands::Check(cmd) => cmd.run(), |
| 79 | } |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | impl Command for Check { |
nothing calls this directly
no test coverage detected