allframe_core/domain/mod.rs
1//! Domain layer contracts and business logic primitives.
2//!
3//! This module provides the building blocks for Clean Architecture domain
4//! layers, including resilience contracts, business rules, and domain models.
5//!
6//! The domain layer defines WHAT needs to be done without knowing HOW it's
7//! implemented.
8
9#![allow(missing_docs)]
10
11pub mod architectural_tests;
12pub mod resilience;
13
14// Re-export domain types for convenience
15pub use resilience::*;