mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-08-02 05:08:31 +00:00
11 lines
284 B
Rust
11 lines
284 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<D: Data> {
|
|
pub presence: presence::Service<D>,
|
|
pub read_receipt: read_receipt::Service<D>,
|
|
pub typing: typing::Service<D>,
|
|
}
|