#[cfg(any(feature = "daemon-async", feature = "updater"))]
mod async_deamon;
#[cfg(all(feature = "daemon-sync", not(any(feature = "daemon-async", feature = "updater"))))]
mod sync_deamon;
#[cfg(any(feature = "daemon-async", feature = "updater"))]
pub use async_deamon::*;
#[cfg(all(feature = "daemon-sync", not(any(feature = "daemon-async", feature = "updater"))))]
pub use sync_deamon::*;