1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2025-08-01 17:38:36 +00:00
conduit/src/service/rooms/edus/mod.rs
Timo Kösters c8f921c532
fix: some compile time errors
Only 174 errors left!
2022-09-06 23:15:09 +02:00

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>,
}