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