-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmod.rs
More file actions
23 lines (21 loc) · 879 Bytes
/
mod.rs
File metadata and controls
23 lines (21 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! Application Layer (DDD)
//!
//! This module contains application-level services and orchestration logic.
//! The application layer coordinates domain operations and infrastructure
//! services to fulfill business use cases.
//!
//! ## Components
//!
//! - `command_handlers` - High-level deployment command handlers implementing the Command Handler pattern
//! - `traits` - Application-layer trait definitions (DDD ports) implemented by outer layers
//! - `services` - Shared application services used by multiple command handlers
//! - `steps` - Workflow orchestration and business process coordination
pub mod command_handlers;
pub mod errors;
pub mod services;
pub mod steps;
pub mod traits;
// Re-export command handler types for convenience
pub use command_handlers::{
ConfigureCommandHandler, CreateCommandHandler, ProvisionCommandHandler, TestCommandHandler,
};