remove unneeded pub

This commit is contained in:
Luna Yao
2026-04-06 02:26:07 +02:00
parent b7edbad4b9
commit 2b3417d703
5 changed files with 14 additions and 14 deletions
+4 -4
View File
@@ -22,11 +22,11 @@ use uuid::Uuid;
#[derive(Derivative, Debug, Clone)]
#[derivative(PartialEq)]
pub struct Zone {
pub(crate) id: Uuid,
pub(crate) origin: LowerName,
pub(crate) records: BTreeMap<RrKey, RecordSet>,
id: Uuid,
origin: LowerName,
records: BTreeMap<RrKey, RecordSet>,
#[derivative(PartialEq(compare_with = "Zone::compare_forward"))]
pub(crate) forward: Option<ForwardConfig>,
pub forward: Option<ForwardConfig>,
}
impl Zone {