Add an os module containing platform-specific traits
This commit is contained in:
parent
9fccb2e06e
commit
8c6a27d426
6 changed files with 113 additions and 29 deletions
9
src/os/mod.rs
Normal file
9
src/os/mod.rs
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue