2019-12-11 06:41:41 +11:00
|
|
|
#[cfg(all(unix, feature = "event-stream"))]
|
|
|
|
pub(crate) use unix::Waker;
|
|
|
|
#[cfg(all(windows, feature = "event-stream"))]
|
|
|
|
pub(crate) use windows::Waker;
|
|
|
|
|
2019-11-19 07:50:57 +11:00
|
|
|
#[cfg(unix)]
|
2019-12-11 06:41:41 +11:00
|
|
|
pub(crate) mod unix;
|
2019-11-19 07:50:57 +11:00
|
|
|
#[cfg(windows)]
|
2019-12-11 06:41:41 +11:00
|
|
|
pub(crate) mod windows;
|