mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-02 03:31:20 +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::*;
|