CommonLibrary/Effect/
mod.rs

1//! # Effect Module
2//!
3//! Defines the core components of the declarative, effects-based architecture.
4//! It provides the `ActionEffect` data structure, the `ApplicationRunTime`
5//! trait for executing effects, and a convenience helper function.
6
7// --- Sub-modules ---
8pub mod ActionEffect;
9
10pub mod ApplicationRunTime;
11
12pub mod ExecuteEffect;