(&mut self)
| 1588 | |
| 1589 | impl InitWizardRenderer for DialoguerInitWizardRenderer { |
| 1590 | fn confirm_migration(&mut self) -> Result<bool> { |
| 1591 | Ok(Confirm::with_theme(&ColorfulTheme::default()) |
| 1592 | .with_prompt("Would you like to migrate these files to the .agents/ directory?") |
| 1593 | .default(true) |
| 1594 | .interact()?) |
| 1595 | } |
| 1596 | |
| 1597 | fn select_files_to_migrate( |
| 1598 | &mut self, |
no test coverage detected