use clap::Args;
#[derive(Args, Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct RequestEnr {
#[clap(
short = 'm',
long = "multiaddr",
help = "The multiaddr of the node to request their ENR from"
)]
pub multiaddr: String,
#[clap(
short = 'l',
long = "listen-address",
help = "Specifies the IPv4 listening address of the server.",
default_value = "0.0.0.0"
)]
pub listen_address: String,
#[clap(
short = 'p',
long = "listen-port",
help = "Specifies the listening UDP port of the server.",
default_value = "9001"
)]
pub listen_port: u16,
}