mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-04-21 14:53:21 +03:00
12 lines
202 B
Rust
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;
|