use thiserror::Error; pub(crate) type LibResult = Result; pub(crate) type LibError = Error; pub type Result = std::result::Result; #[derive(Debug, Error)] pub enum Error {}