chore(sdk): Add default for noop component (#16570)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
Emilia Hane
2025-06-21 08:54:24 +02:00
committed by GitHub
parent 83802249ea
commit 10f8344862

View File

@@ -57,3 +57,10 @@ where
}
}
}
impl<T: PayloadTypes> Default for NoopPayloadBuilderService<T> {
fn default() -> Self {
let (service, _) = Self::new();
service
}
}