mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
12 lines
276 B
Rust
12 lines
276 B
Rust
pub mod presence;
|
|
pub mod read_receipt;
|
|
pub mod typing;
|
|
|
|
pub trait Data: presence::Data + read_receipt::Data + typing::Data + 'static {}
|
|
|
|
pub struct Service {
|
|
pub presence: presence::Service,
|
|
pub read_receipt: read_receipt::Service,
|
|
pub typing: typing::Service,
|
|
}
|