allframe-core 0.1.28

AllFrame core - complete web framework with HTTP/2 server, REST/GraphQL/gRPC, DI, CQRS
Documentation
//! Application layer orchestration and use case implementations.
//!
//! This module provides the orchestration layer that coordinates between
//! domain logic and infrastructure, including resilience orchestration,
//! transaction management, and business workflow coordination.
//!
//! The application layer decides HOW domain logic is executed while maintaining
//! Clean Architecture separation of concerns.

#![allow(missing_docs)]

pub mod resilience;
pub mod resilience_config;
pub mod resilience_observability;

// Re-export application types for convenience
pub use resilience::*;
pub use resilience_config::*;
pub use resilience_observability::*;