1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-04 17:44:11 +02:00

allow bare-service proxy hosts

This commit is contained in:
Robin Appelman 2026-03-09 17:35:47 +01:00
commit fdc821cb93
2 changed files with 58 additions and 24 deletions

View file

@ -218,7 +218,7 @@ fn test_option_parse() {
);
}
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct Cloud {
pub id: String,
pub network: String,
@ -851,3 +851,9 @@ impl Cloud {
None
}
}
impl PartialEq for Cloud {
fn eq(&self, other: &Self) -> bool {
self.id == other.id
}
}