Skip to main content

Mountain/Track/Effect/
mod.rs

1#![allow(non_snake_case)]
2
3//! Effect creation and routing for `Track`. Two siblings:
4//! `CreateEffectForRequest::Fn` (the central router with one domain
5//! sub-module per file) and `MappedEffectType::MappedEffect` (the typed
6//! result alias). No `pub use` re-exports - callers spell the full path.
7
8pub mod CreateEffectForRequest;
9pub mod MappedEffectType;