Mountain/Track/Webview/mod.rs
1//! # Webview Module (Track)
2//!
3//! Contains the webview message forwarding functionality for the Track module.
4
5// Use pub mod to ensure Tauri command helpers are accessible
6pub mod MountainWebviewPostMessageFromGuest;
7
8// Re-export for backward compatibility
9pub use MountainWebviewPostMessageFromGuest::MountainWebviewPostMessageFromGuest;
10// Also re-export the Tauri command helper that's generated by the macro
11pub use MountainWebviewPostMessageFromGuest::__cmd__MountainWebviewPostMessageFromGuest;