mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2025-12-11 17:58:52 -05:00
11 lines
266 B
Rust
11 lines
266 B
Rust
pub mod presence;
|
|
pub mod read_receipt;
|
|
pub mod typing;
|
|
|
|
pub trait Data: presence::Data + read_receipt::Data + typing::Data {}
|
|
|
|
pub struct Service {
|
|
pub presence: presence::Service,
|
|
pub read_receipt: read_receipt::Service,
|
|
pub typing: typing::Service,
|
|
}
|