Add (hopefully-working) support for windows

This commit is contained in:
Lachlan Sneff
2019-01-21 11:51:41 -08:00
parent a3821a90c1
commit b74a08f097
12 changed files with 201 additions and 38 deletions

View 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::*;