mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-04-23 03:43:16 +00:00
7 lines
179 B
Rust
7 lines
179 B
Rust
|
|
use libchat::AddressedEnvelope;
|
||
|
|
|
||
|
|
pub trait DeliveryService {
|
||
|
|
type Error: std::fmt::Debug;
|
||
|
|
fn deliver(&mut self, envelope: AddressedEnvelope) -> Result<(), Self::Error>;
|
||
|
|
}
|