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