Common/Error/mod.rs
1//! # Error Module
2//!
3//! Defines the universal, structured error type for the application and
4//! aggregates all error-related exports. This ensures consistent and robust
5//! error handling across all services and operations.
6
7#![allow(non_snake_case, non_camel_case_types)]
8
9pub mod CommonError;