1#[cfg(target_os = "linux")] 2pub mod linux; 3#[cfg(target_os = "linux")] 4pub use linux::{err, set, DeviceInterface, RouteSocket, WgSocket}; 5 6pub mod get; 7 8#[cfg(feature = "xplatform")] 9pub mod xplatform;