pub type Result = std::result::Result; #[derive(thiserror::Error, Debug)] pub enum Error { #[error("IO error: {0:?}")] IO(#[from] std::io::Error), #[error("Stdin error: Failed to get finder's stdin")] Stdin, }