1cfg_if::cfg_if! {
2 if #[cfg(target_os = "linux")] {
3 pub mod linux;
4 pub use linux::Decrypter;
5 } else if #[cfg(target_os = "macos")] {
6 pub mod mac;
7 pub use mac::Decrypter;
8 } else if #[cfg(target_os = "windows")] {
9 pub mod win;
10 pub use win::Decrypter;
11 }
12}
13
14pub mod error;