get_local_ip 0.1.1

Get your local IP address.
Documentation

local_ip

✨ Simple was made with rust, to get your local ip.

Getting Started.

  • install
[dependencies]
get_local_ip = "0.1.1"
  • How to use?
extern crate get_local_ip;

use get_local_ip::get;

fn main() {
  // Example to use
  println!("{:?}", get::to_string().unwrap());
}