mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-25 06:31:32 +00:00
12 lines
181 B
Rust
12 lines
181 B
Rust
![]() |
#[cfg(target_os = "linux")]
|
||
|
pub mod linux;
|
||
|
|
||
|
#[cfg(target_os = "macos")]
|
||
|
pub mod macos;
|
||
|
|
||
|
#[cfg(target_os = "linux")]
|
||
|
pub use linux::*;
|
||
|
|
||
|
#[cfg(target_os = "macos")]
|
||
|
pub use macos::*;
|