rust-gamedig/src/errors/mod.rs
2023-09-10 23:12:18 +03: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::*;