2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-05-01 04:31:23 +00:00
async-std/src/os/mod.rs
2019-08-12 19:50:30 +02:00

9 lines
231 B
Rust

//! OS-specific extensions.
#[cfg(any(unix, feature = "docs"))]
#[cfg_attr(feature = "docs", doc(cfg(unix)))]
pub mod unix;
#[cfg(any(windows, feature = "docs"))]
#[cfg_attr(feature = "docs", doc(cfg(windows)))]
pub mod windows;