doido-core 0.0.6

Core errors (thiserror), anyhow Result, serde, tracing, and regex helpers for the Doido framework.
Documentation
1
2
3
4
5
6
7
pub use ::anyhow::{self, anyhow, bail, Context as AnyhowContext};
pub use ::thiserror;

/// App-level result type.
/// Use in controllers, jobs, and application code.
/// Crate-level errors use their own typed enums via `thiserror`.
pub type Result<T, E = anyhow::Error> = std::result::Result<T, E>;