diff options
Diffstat (limited to 'src/os/mod.rs')
-rw-r--r-- | src/os/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/os/mod.rs b/src/os/mod.rs new file mode 100644 index 0000000..251a8d4 --- /dev/null +++ b/src/os/mod.rs @@ -0,0 +1,9 @@ +//! Contains traits with platform-specific methods in them. +//! +//! Contains the follow modules: +//! +//! - `unix` +//! - `windows` +//! +pub mod unix; +pub mod windows; |