portls 0.3.0

Modern cross-platform port inspector - ls for network ports
Documentation
1
2
3
4
5
6
7
use anyhow::Result;
use clap::Parser;

fn main() -> Result<()> {
    let cli = portls::Cli::parse();
    portls::run(cli)
}