1#[cfg(target_os = "windows")]
2mod windows;
3
4#[cfg(not(any(target_os = "windows", target_os = "android")))]
5mod unix;
6
7#[cfg(target_os = "windows")]
8pub use windows::{user, system};
9
10#[cfg(not(any(target_os = "windows", target_os = "android")))]
11pub use unix::{user, system};