mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-07-29 11:41:45 +08:00
10 lines
125 B
Rust
10 lines
125 B
Rust
#[cfg(unix)]
|
|
#[path = "capture_linux.rs"]
|
|
mod imp;
|
|
|
|
#[cfg(windows)]
|
|
#[path = "capture_windows.rs"]
|
|
mod imp;
|
|
|
|
pub use imp::*;
|