| 1027 | } |
| 1028 | |
| 1029 | trait InitWizardRenderer { |
| 1030 | fn confirm_migration(&mut self) -> Result<bool>; |
| 1031 | fn select_files_to_migrate( |
| 1032 | &mut self, |
| 1033 | discovered_files: &[DiscoveredFile], |
| 1034 | ) -> Result<Vec<usize>>; |
| 1035 | fn select_skills_mode(&mut self, choice: &SkillsWizardChoice) -> Result<usize>; |
| 1036 | fn confirm_backup_originals(&mut self) -> Result<bool>; |
| 1037 | } |
| 1038 | |
| 1039 | fn select_wizard_files<R: InitWizardRenderer>( |
| 1040 | renderer: &mut R, |
nothing calls this directly
no outgoing calls
no test coverage detected