pub use *;
/// Block `anyhow::Ok`. This is the main purpose of this crate.
pub use Ok;
/// I think `Result<()>` is ugly.
pub type Result<T = , E = Error> = Result;
/// Similar to `anyhow::Ok`, but do not conflict with `Result::Ok`.
/// Poor man's try block for `Option`.
/// Poor man's try block for `Result`.