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:
parent
8e79e997a8
commit
fdc821cb93
2 changed files with 58 additions and 24 deletions
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue