#[cfg(target_os = "macos")]
mod macos;
#[cfg(target_os = "macos")]
pub use macos::*;
#[cfg(target_os = "linux")]
mod linux;
#[cfg(target_os = "linux")]
pub use linux::*;
#[cfg(not(any(target_os = "macos", target_os = "linux")))]
compile_error!("Panasyn currently only supports macOS and Linux");