Add an os module containing platform-specific traits

This commit is contained in:
Pierre Krieger 2015-09-25 18:04:55 +02:00
parent 9fccb2e06e
commit 8c6a27d426
6 changed files with 113 additions and 29 deletions

9
src/os/mod.rs Normal file
View file

@ -0,0 +1,9 @@
//! Contains traits with platform-specific methods in them.
//!
//! Contains the follow modules:
//!
//! - `unix`
//! - `windows`
//!
pub mod unix;
pub mod windows;