pub trait Prompter {
// Required methods
fn select_example(&self) -> Result<String>;
fn prompt_project_name(&self, default: &str) -> Result<String>;
fn select_chip(&self) -> Result<String>;
fn confirm_overwrite(&self, dir_name: &str) -> Result<bool>;
}