pub struct Prompt {} impl Prompt { pub fn new() -> Self { Self {} } pub fn get_prompt(&mut self) -> String { format!("ยป ") } }