1 2 3 4 5 6 7 8 9
pub mod error; pub mod kind; pub mod mapper; pub mod result; pub use error::AppError; pub use kind::ErrorKind; pub use mapper::map_error; pub use result::AppResult;