dnsi 0.2.0

A tool for investigating the DNS.
Documentation
1
2
3
4
5
6
7
8
9
//! The _dnsi_ binary.

use clap::Parser;

fn main() {
    if let Err(err) = dnsi::Args::parse().execute() {
        eprintln!("{}", err);
    }
}