Files
rustdesk/libs/systray-rs/src/api/mod.rs
2021-03-27 09:41:55 +08:00

12 lines
202 B
Rust

#[cfg(target_os = "windows")]
#[path = "win32/mod.rs"]
pub mod api;
#[cfg(target_os = "linux")]
#[path = "linux/mod.rs"]
pub mod api;
#[cfg(target_os = "macos")]
#[path = "cocoa/mod.rs"]
pub mod api;