grapevine/src/service/rooms/edus.rs
Charles Hall d748544f0e
enable unreachable_pub lint
This causes some other lints to start firing too (which is good), but
I'm going to fix them in follow-up commits to keep things organized.
2024-05-12 18:51:26 -07:00

9 lines
231 B
Rust

pub(crate) mod read_receipt;
pub(crate) mod typing;
pub(crate) trait Data: read_receipt::Data + 'static {}
pub(crate) struct Service {
pub(crate) read_receipt: read_receipt::Service,
pub(crate) typing: typing::Service,
}