1
2
3
4
5
6
7
8
9
10
11
12
mod base;
mod manager;
#[cfg(unix)]
mod unix;
#[cfg(windows)]
mod windows;

#[cfg(unix)]
pub use self::unix::UnixConnection as SocketConnection;
#[cfg(windows)]
pub use self::windows::WindowsConnection as SocketConnection;
pub use self::{base::Connection, manager::Manager};