/// Just a `anyhow::Result` type alias. pub type Result = anyhow::Result; /// Just an `anyhow::Error` type alias. pub type Error = anyhow::Error; /// Just re-export some `anyhow` stuff. pub use anyhow::anyhow; pub use anyhow::bail; pub use anyhow::Context;