#[cfg(target_os = "macos")]
mod launchd;
mod manager;
#[doc = include_str!("../README.md")]
mod readme_tests {}
#[cfg(windows)]
mod sc;
#[cfg(target_os = "linux")]
mod systemd;
#[cfg(not(target_os = "windows"))]
mod unix_util;
#[cfg(not(target_os = "windows"))]
mod util;
pub use manager::*;