host_discovery 0.1.3

A simple crate for host discovery
Documentation
# A simple rust crate for host discovery


> [On Crates.io]https://crates.io/crates/host_discovery

### Todo

- Add support for WSL detection (is enabled or not)
- Add support for windows edition detection
- Add support for public ip detection

> Basic Usage

- Add to your project 
```sh 
cargo add host_discovery

```

```rust
use host_discovery;

fn main() {
    // `detect_os()` Matches against `std::env::consts::OS` then returns the host operating system as a String 
    println!("{}", detect_os()) 
    // `detect_distro()` // Reads & returns the name of the Linux distro as a String from /etc/os-release
    println!("{}", detect_distro()) 
}
```