daemon/
lib.rs

1#[cfg(target_os = "windows")]
2extern crate kernel32;
3#[cfg(target_os = "windows")]
4extern crate winapi;
5
6pub mod daemon;
7pub use daemon::*;
8
9mod singleton;
10
11#[cfg(target_os = "windows")]
12pub mod windows;
13#[cfg(target_os = "windows")]
14pub use windows::*;
15
16#[cfg(target_os = "linux")]
17pub mod linux;
18#[cfg(target_os = "linux")]
19pub use linux::*;