diff options
Diffstat (limited to 'src/messages.rs')
-rw-r--r-- | src/messages.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/messages.rs b/src/messages.rs index 09a7c14..86ba1b2 100644 --- a/src/messages.rs +++ b/src/messages.rs @@ -3,14 +3,16 @@ use std::collections::HashSet; #[derive(Debug, Clone, PartialEq, Eq)] pub struct PublicExposedPorts { pub tcp_ports: HashSet<u16>, - pub udp_ports: HashSet<u16> + pub udp_ports: HashSet<u16>, + pub acme: HashSet<String> } impl PublicExposedPorts { pub fn new() -> Self { return Self { tcp_ports: HashSet::new(), - udp_ports: HashSet::new() + udp_ports: HashSet::new(), + acme: HashSet::new() } } } |