aboutsummaryrefslogtreecommitdiff
path: root/src/messages.rs
diff options
context:
space:
mode:
authoradrien <adrien@luxeylab.net>2021-09-11 18:55:26 +0200
committeradrien <adrien@luxeylab.net>2021-09-11 18:55:26 +0200
commitc19b763b5de1fd065f249d47e872ca84bbb39330 (patch)
treefaf544d5ebe0bc1255e8a6d09248cb00b747141d /src/messages.rs
parent4d76c3d78ade04038593aeef867294c9eee2a4b8 (diff)
downloaddiplonat-c19b763b5de1fd065f249d47e872ca84bbb39330.tar.gz
diplonat-c19b763b5de1fd065f249d47e872ca84bbb39330.zip
applied rustfmt from branch meta/formating, without rebasing anything
Diffstat (limited to 'src/messages.rs')
-rw-r--r--src/messages.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/messages.rs b/src/messages.rs
index 86ba1b2..ea1629a 100644
--- a/src/messages.rs
+++ b/src/messages.rs
@@ -4,7 +4,7 @@ use std::collections::HashSet;
pub struct PublicExposedPorts {
pub tcp_ports: HashSet<u16>,
pub udp_ports: HashSet<u16>,
- pub acme: HashSet<String>
+ pub acme: HashSet<String>,
}
impl PublicExposedPorts {
@@ -12,7 +12,7 @@ impl PublicExposedPorts {
return Self {
tcp_ports: HashSet::new(),
udp_ports: HashSet::new(),
- acme: HashSet::new()
- }
+ acme: HashSet::new(),
+ };
}
}