mirror of
https://github.com/fluencelabs/wasmer
synced 2025-05-07 16:22:14 +00:00
12 lines
133 B
Rust
12 lines
133 B
Rust
#[cfg(unix)]
|
|
mod unix;
|
|
|
|
#[cfg(windows)]
|
|
mod windows;
|
|
|
|
#[cfg(unix)]
|
|
pub use self::unix::*;
|
|
|
|
#[cfg(windows)]
|
|
pub use self::windows::*;
|