mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-06-29 15:34:35 +02:00
11 lines
276 B
Rust
11 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,
|
|
}
|