skyspell 1.0.1

Fast and handy spell checker for the command line
Documentation
use dialoguer::{Confirm, Input, Select};

pub trait Interactor {
    fn input(&self, prompt: &str) -> String;
    fn input_letter(&self, prompt: &str, choices: &str) -> String;
    fn select(&self, prompt: &str, choices: &[&str]) -> Option<usize>;
    fn confirm(&self, prompt: &str) -> bool;

    fn info(&self, message: &str) {
        println!("{}", message);
    }

    fn error(&self, message: &str) {
        eprintln!("{}", message);
    }
}

pub struct ConsoleInteractor;
impl Interactor for ConsoleInteractor {
    fn input(&self, prompt: &str) -> String {
        #[allow(clippy::unwrap_used)]
        Input::new()
            .with_prompt(prompt)
            .allow_empty(false)
            .interact()
            .unwrap()
    }

    fn input_letter(&self, prompt: &str, choices: &str) -> String {
        #[allow(clippy::unwrap_used)]
        Input::new()
            .with_prompt(prompt)
            .validate_with(|input: &String| -> Result<(), &str> {
                if choices.contains(input) {
                    Ok(())
                } else {
                    Err("invalid choice")
                }
            })
            .interact()
            .unwrap()
    }

    fn select(&self, prompt: &str, choices: &[&str]) -> Option<usize> {
        #[allow(clippy::unwrap_used)]
        Select::new()
            .with_prompt(prompt)
            .items(choices)
            .interact_opt()
            .unwrap()
    }

    fn info(&self, message: &str) {
        println!("{}", message);
    }

    fn confirm(&self, prompt: &str) -> bool {
        #[allow(clippy::unwrap_used)]
        Confirm::new().with_prompt(prompt).interact().unwrap()
    }

    fn error(&self, message: &str) {
        eprintln!("{}", message);
    }
}