Chore(Docs): Add More Detailed Documentation

This commit is contained in:
Tochukwu Nkemdilim
2018-08-16 23:54:04 +01:00
parent be1064b383
commit 03325c939a
17 changed files with 294 additions and 60 deletions
+4 -1
View File
@@ -1,12 +1,15 @@
#![allow(dead_code)]
mod connectivity;
#[cfg(target_os = "windows")]
mod handler;
mod hotspot;
mod platforms;
/// Pre-requisite module for `Connectivity`, `Hotspot` functionality.
pub mod prelude {
pub use connectivity::*;
pub use hotspot::*;
}
pub use platforms::*;
pub use platforms::WiFi;