ip-tools 0.2.0

A CLI tool and library to retrieve the local IP address and list network interfaces
1
2
3
4
5
6
7
#![warn(clippy::pedantic, clippy::nursery)]

mod cli;

fn main() -> std::process::ExitCode {
    cli::ip_tools_cli()
}