ntw 0.2.1

A macOS network toolkit providing live speed metrics and simple interface management.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use anyhow::Result;

use crate::cli::DryRun;

mod list;
mod remove;

pub fn run_list(iface: &str, dry_run: DryRun) -> Result<()> {
    list::run(iface, dry_run)
}

pub async fn run_remove(iface: &str, ssid: Option<&str>, dry_run: DryRun) -> Result<()> {
    remove::run(iface, ssid, dry_run).await
}