pub mod piv;
#[derive(Debug)]
pub enum Error {
PivError(piv::Error),
}
impl std::fmt::Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match *self {
Error::PivError(ref e) => write!(f, "{}", e.to_string()),
}
}
}