easy_errors/lib.rs
1// easy_error_workspace/easy_error/src/lib.rs
2
3//! # easy_error
4//!
5//! `easy_error` is a Rust crate that provides macros and utilities to simplify and enhance error handling.
6//! It reduces boilerplate, improves readability, and maintains Rust's safety guarantees.
7
8pub use easy_error_core::EasyError;
9pub use easy_error_macros::{define_error, try_easy};