1#[cfg(all(unix, feature = "event-stream"))]
2pub(crate) use unix::waker::Waker;
3#[cfg(all(windows, feature = "event-stream"))]
4pub(crate) use windows::waker::Waker;
5
6#[cfg(unix)]
7pub(crate) mod unix;
8#[cfg(windows)]
9pub(crate) mod windows;
10