Avoid panic

This commit is contained in:
Jazz Turner-Baggs 2026-04-28 13:27:04 -07:00
parent 61129d30c0
commit e20b7983ed
No known key found for this signature in database

View File

@ -32,6 +32,7 @@ impl DeliveryService for CDelivery {
} }
fn subscribe(&mut self, _delivery_address: &str) -> Result<(), Self::Error> { fn subscribe(&mut self, _delivery_address: &str) -> Result<(), Self::Error> {
todo!() // TODO: (P1) CDelivery does not support delivery_address filtering
Ok(())
} }
} }