You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
distant/distant-core-server/src/builder.rs

14 lines
146 B
Rust

mod tcp;
#[cfg(unix)]
mod unix;
#[cfg(windows)]
mod windows;
pub use tcp::*;
#[cfg(unix)]
pub use unix::*;
#[cfg(windows)]
pub use windows::*;