diff --git a/crates/tranquil-pds/src/plc/mod.rs b/crates/tranquil-pds/src/plc/mod.rs index d402c84..2b76b82 100644 --- a/crates/tranquil-pds/src/plc/mod.rs +++ b/crates/tranquil-pds/src/plc/mod.rs @@ -45,6 +45,8 @@ pub enum ServiceType { Pds, #[serde(rename = "AtprotoAppView")] AppView, + #[serde(rename = "AtprotoLabeler")] + Labeler, } impl ServiceType { @@ -52,6 +54,7 @@ impl ServiceType { match self { Self::Pds => "AtprotoPersonalDataServer", Self::AppView => "AtprotoAppView", + Self::Labeler => "AtprotoLabeler", } }