mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-29 16:41:33 +00:00
Add (hopefully-working) support for windows
This commit is contained in:
11
lib/runtime/src/sys/mod.rs
Normal file
11
lib/runtime/src/sys/mod.rs
Normal file
@ -0,0 +1,11 @@
|
||||
#[cfg(unix)]
|
||||
mod unix;
|
||||
|
||||
#[cfg(windows)]
|
||||
mod windows;
|
||||
|
||||
#[cfg(unix)]
|
||||
pub use self::unix::*;
|
||||
|
||||
#[cfg(windows)]
|
||||
pub use self::windows::*;
|
Reference in New Issue
Block a user