diff --git a/src/config.rs b/src/config.rs index 824cd29..9984578 100644 --- a/src/config.rs +++ b/src/config.rs @@ -97,4 +97,11 @@ impl Config { "" } } + + /// List the end of life rules set in the configuration + pub fn list_rules(&self) { + for rule in &self.rules { + println!("{rule}"); + } + } }