e-app 0.2.8

MII - Machine Internal Inspection
Documentation
#![allow(
  clippy::cognitive_complexity,
  clippy::large_enum_variant,
  clippy::module_inception,
  clippy::needless_doctest_main
)]
#![warn(
  missing_debug_implementations,
  // missing_docs,
  rust_2018_idioms,
  unreachable_pub
)]
#![deny(unused_must_use)]
#![doc(test(
  no_crate_inject,
  attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
))]

//!
//! # Rust
//!```rust
//! fn main() -> e_utils::Result<()> {
//!   if e_app::input::Opts::check_empty() {
//!     let _ = app::MyApp::launch()?;
//!   } else {
//!     let opts = e_app::input::Opts::new(None as Option<Vec<String>>)?;
//!     let res = e_app::input::api(opts)?;
//!     println!("{}", res.to_str()?);
//!   }
//!   Ok(())
//! }
//! ```

/// MACROS
#[macro_use]
mod macros;

/// Cmd input
pub mod input;
cfg_os! {
    /// OS
    pub mod os;
}
/// Share
#[path = "./share.rs"]
pub mod share;

cfg_drive! {
    /// 驱动
    pub mod drive;
}
cfg_clean! {
    /// 清理
    pub mod clean;
}

/// 网络
pub mod net;