mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-07-13 01:40:27 +02:00
11 lines
252 B
Rust
11 lines
252 B
Rust
pub mod presence;
|
|
pub mod read_receipt;
|
|
pub mod typing;
|
|
|
|
pub trait Data: presence::Data + read_receipt::Data + 'static {}
|
|
|
|
pub struct Service {
|
|
pub presence: presence::Service,
|
|
pub read_receipt: read_receipt::Service,
|
|
pub typing: typing::Service,
|
|
}
|