use crate::config::util::*;
#[derive(Debug, Args, Clone)]
#[command(flatten_help = true)]
pub struct MdnsResolveArgs {
pub hostname: String,
#[arg(long, default_value_t = 1000)]
pub timeout_ms: u64,
#[arg(short, long, action = ArgAction::SetTrue)]
pub short_circuit: bool,
}