//! This library provides a way to access system information such as CPU load, mounted filesystems,
//! network interfaces, etc.
extern crate winapi;
extern crate libc;
extern crate time;
extern crate chrono;
extern crate bytesize;
extern crate lazy_static;
extern crate nom;
pub use Platform;
pub use PlatformImpl as System;
pub use *;