Merge branch 'master' into idempotent-load-balancer
All checks were successful
Run Check Script / check (pull_request) Successful in 1m3s

This commit is contained in:
2025-09-08 19:31:05 +00:00
129 changed files with 7445 additions and 809 deletions

View File

@@ -267,12 +267,12 @@ pub struct Bogons {
#[derive(Default, PartialEq, Debug, YaSerialize, YaDeserialize)]
pub struct Group {
pub name: String,
pub description: String,
pub description: Option<String>,
pub scope: String,
pub gid: u32,
pub member: Vec<u32>,
pub member: String,
#[yaserde(rename = "priv")]
pub priv_field: String,
pub priv_field: Option<String>,
pub source_networks: Option<MaybeString>,
}