diff --git a/src/opts.rs b/src/opts.rs index 9eb5e4d..93fb62e 100644 --- a/src/opts.rs +++ b/src/opts.rs @@ -17,4 +17,9 @@ pub struct Opts { /// If enabled, any IPv6 (AAAA) records in the configuration file are ignored. #[clap(action, long)] pub skip_ipv6: bool, + /// Repeat after specified delay + /// + /// If enabled waits for the given delay between updating DNS records + #[clap(long)] + pub repeat: Option, }