mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-17 07:41:23 +01:00
9 lines
178 B
Rust
9 lines
178 B
Rust
mod presence;
|
|
mod typing;
|
|
mod read_receipt;
|
|
|
|
use std::sync::Arc;
|
|
|
|
use crate::{service, database::KeyValueDatabase};
|
|
|
|
impl service::rooms::edus::Data for Arc<KeyValueDatabase> {}
|