use cfg_if::cfg_if;
cfg_if! {
if #[cfg(windows)] {
mod windows;
pub use self::windows::*;
} else if #[cfg(target_os = "linux")] {
mod linux;
pub use self::linux::*;
} else if #[cfg(target_os = "macos")] {
mod macos;
pub use self::macos::*;
} else {
compile_error!("Unsupported cfg");
}
}