netwatch-rs 0.2.0

A modern network traffic monitor for Unix systems, inspired by nload but written in Rust
Documentation
1
2
3
4
5
6
7
8
use anyhow::Result;
use clap::Parser;
use netwatch_rs::{cli::Args, run};

fn main() -> Result<()> {
    let args = Args::parse();
    run(args)
}