mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-19 16:51:24 +01:00
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.
9 lines
231 B
Rust
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,
|
|
}
|