rust-gamedig/crates/lib/src/errors/mod.rs
2023-10-16 23:20:47 +01:00

12 lines
239 B
Rust

//! Every GameDig errors.
/// The Error with backtrace.
pub mod error;
/// All defined Error kinds.
pub mod kind;
/// `GDResult`, a shorthand of `Result<T, GDError>`.
pub mod result;
pub use error::*;
pub use kind::*;
pub use result::*;