Common/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#![allow(non_snake_case, non_camel_case_types)]
8
9// --- Sub-modules ---
10pub mod ActionEffect;
11
12pub mod ApplicationRunTime;
13
14pub mod ExecuteEffect;