usage/
usage.rs

1extern crate machine_ip;
2
3fn main() {
4    println!(
5        "{}",
6        machine_ip::get()
7            .expect("Could not find local IP address.")
8            .to_string()
9    );
10}