impala 0.7.1

TUI for managing wifi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use clap::{Command, arg, crate_version};

pub fn cli() -> Command {
    Command::new("impala")
        .about("TUI For managing wifi")
        .version(crate_version!())
        .arg(
            arg!(--mode <mode>)
                .short('m')
                .required(false)
                .help("Device mode")
                .value_parser(["station", "ap"]),
        )
}