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