mirror of
https://github.com/NLnetLabs/dnst.git
synced 2026-09-25 11:15:01 +02:00
8 lines
123 B
Rust
8 lines
123 B
Rust
use clap::Parser;
|
|
|
|
fn main() {
|
|
if let Err(err) = dnst::Args::parse().execute() {
|
|
eprintln!("{}", err);
|
|
}
|
|
}
|