mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2025-12-13 10:49:00 -05:00
9 lines
195 B
Rust
9 lines
195 B
Rust
pub mod presence;
|
|
pub mod read_receipt;
|
|
pub mod typing;
|
|
|
|
pub struct Service<D> {
|
|
presence: presence::Service<D>,
|
|
read_receipt: read_receipt::Service<D>,
|
|
typing: typing::Service<D>,
|
|
}
|