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); } }