From 39611ec0d477e8a5fa958cece99b84f70ccda71d Mon Sep 17 00:00:00 2001 From: adrien Date: Thu, 16 Sep 2021 15:03:33 +0200 Subject: AcmeActor extracts primary/secondary URLs; Consul KV client for strings --- src/messages.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/messages.rs') diff --git a/src/messages.rs b/src/messages.rs index ea1629a..6c2ab38 100644 --- a/src/messages.rs +++ b/src/messages.rs @@ -4,7 +4,7 @@ use std::collections::HashSet; pub struct PublicExposedPorts { pub tcp_ports: HashSet, pub udp_ports: HashSet, - pub acme: HashSet, + pub acme: Vec, } impl PublicExposedPorts { @@ -12,7 +12,7 @@ impl PublicExposedPorts { return Self { tcp_ports: HashSet::new(), udp_ports: HashSet::new(), - acme: HashSet::new(), + acme: Vec::new(), }; } } -- cgit v1.2.3