Skip to main content

Mountain/RunTime/
mod.rs

1//! Effect execution engine for the Mountain application. Provides the runtime
2//! environment for executing effects through the Echo scheduler.
3
4// --- Sub-modules ---
5
6/// Application runtime module containing the struct definition.
7/// The struct is accessible as
8/// `RunTime::ApplicationRunTime::ApplicationRunTime`.
9pub mod ApplicationRunTime;
10
11/// Effect execution logic.
12pub mod Execute;
13
14/// Service shutdown and lifecycle management.
15pub mod Shutdown;