mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-22 00:00:11 +02:00
8 lines
93 B
Rust
8 lines
93 B
Rust
//! OS-specific functionality.
|
|
|
|
#[cfg(unix)]
|
|
pub mod unix;
|
|
|
|
#[cfg(windows)]
|
|
pub mod windows;
|