e_libscanner/sync_scan/mod.rs
1/// Host Scanner
2/// # Example
3/// ```
4/// fn main() -> Result<(), String> {
5/// #[cfg(feature = "sync")]
6mod scanner;
7mod receiver;
8
9#[cfg(not(target_os="windows"))]
10mod unix;
11#[cfg(not(target_os="windows"))]
12use unix::*;
13
14#[cfg(target_os="windows")]
15#[path = "./windows.rs"]
16mod win;
17#[cfg(target_os="windows")]
18use win::*;
19
20pub use scanner::*;