1 | #[cfg(feature = "use-dev-tty")] |
---|---|
2 | pub(crate) mod tty; |
3 | |
4 | #[cfg(not(feature = "use-dev-tty"))] |
5 | pub(crate) mod mio; |
6 | |
7 | #[cfg(feature = "use-dev-tty")] |
8 | pub(crate) use self::tty::UnixInternalEventSource; |
9 | |
10 | #[cfg(not(feature = "use-dev-tty"))] |
11 | pub(crate) use self::mio::UnixInternalEventSource; |
12 |