Mountain/RunTime/mod.rs
1//! # RunTime Module
2//!
3//! This module defines the concrete `ApplicationRunTime` for the Mountain
4//! application.
5//!
6//! The `ApplicationRunTime` is the core execution engine that is powered by the
7//! `Echo` scheduler. It implements the `ApplicationRunTime` trait from the
8//! `Common` crate and is responsible for running all `ActionEffect`s.
9
10#![allow(non_snake_case, non_camel_case_types)]
11
12pub mod ApplicationRunTime;