organic/src/error/mod.rs
2023-10-16 18:29:21 -04:00

6 lines
139 B
Rust

#[allow(clippy::module_inception)]
mod error;
pub(crate) use error::CustomError;
pub(crate) use error::MyError;
pub(crate) use error::Res;