(&self)
| 56 | |
| 57 | impl Command for Doctor { |
| 58 | fn run(&self) -> CliResult<()> { |
| 59 | match &self.command { |
| 60 | DoctorCommands::RepairDependencyIndex(cmd) => cmd.run(), |
| 61 | DoctorCommands::MaterializeCrdt(cmd) => cmd.run(), |
| 62 | } |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | impl Command for RepairDependencyIndex { |
nothing calls this directly
no test coverage detected