Mountain/Track/FrontendCommand/
mod.rs

1//! # FrontendCommand Module (Track)
2//!
3//! Contains the frontend command dispatch functionality for the Track module.
4
5// Use pub mod to ensure Tauri command helpers are accessible
6pub mod DispatchFrontendCommand;
7
8// Re-export for backward compatibility
9pub use DispatchFrontendCommand::DispatchFrontendCommand;
10// Also re-export the Tauri command helper that's generated by the macro
11pub use DispatchFrontendCommand::__cmd__DispatchFrontendCommand;