daemon 0.0.6

Library for simple creating Linux demons and Windows services.
Documentation
pub mod daemon;
pub use daemon::*;

mod singleton;

#[cfg(target_os = "windows")]
pub mod windows;
#[cfg(target_os = "windows")]
pub use windows::*;

#[cfg(target_os = "linux")]
pub mod linux;
#[cfg(target_os = "linux")]
pub use linux::*;