Mountain/Track/Effect/
mod.rs

1//! # Effect Module (Track)
2//!
3//! Contains the effect creation and routing functionality for the Track module.
4
5mod CreateEffectForRequest;
6mod MappedEffectType;
7
8// Re-export with both original name and Fn alias for backward compatibility
9pub use CreateEffectForRequest::{CreateEffectForRequest, CreateEffectForRequest as Fn};
10pub use MappedEffectType::MappedEffect;