pub mod platform;
pub mod utils;
pub mod shared;
#[cfg(target_os = "linux")]
mod linux;
#[cfg(target_os = "linux")]
pub type Info = linux::Linux;
#[cfg(target_os = "android")]
mod android;
#[cfg(target_os = "android")]
pub type Info = android::Android;
#[cfg(target_os = "freebsd")]
pub mod freebsd;
#[cfg(target_os="freebsd")]
pub type Info = freebsd::FreeBSD;