mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-06-14 03:32:00 +08:00
14 lines
222 B
Rust
14 lines
222 B
Rust
#[cfg(all(unix, not(feature = "android")))]
|
|
#[path = "device_linux.rs"]
|
|
mod imp;
|
|
|
|
#[cfg(feature = "android")]
|
|
#[path = "device_android.rs"]
|
|
mod imp;
|
|
|
|
#[cfg(windows)]
|
|
#[path = "device_windows.rs"]
|
|
mod imp;
|
|
|
|
pub use imp::*;
|