allframe-core 0.1.28

AllFrame core - complete web framework with HTTP/2 server, REST/GraphQL/gRPC, DI, CQRS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Domain layer contracts and business logic primitives.
//!
//! This module provides the building blocks for Clean Architecture domain
//! layers, including resilience contracts, business rules, and domain models.
//!
//! The domain layer defines WHAT needs to be done without knowing HOW it's
//! implemented.

#![allow(missing_docs)]

pub mod architectural_tests;
pub mod resilience;

// Re-export domain types for convenience
pub use resilience::*;