feat(plc): support AtprotoLabeler service

This commit is contained in:
june
2026-03-28 20:54:43 +00:00
committed by Tangled
parent 696940f732
commit 6abc0eaca2
+3
View File
@@ -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",
}
}