feat(plc): support AtprotoLabeler service

This commit is contained in:
june
2026-03-28 21:15:08 +01:00
committed by Tangled
parent 696940f732
commit 6abc0eaca2

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",
}
}