mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-18 08:11:24 +01:00
5 lines
94 B
Rust
5 lines
94 B
Rust
use ruma::RoomId;
|
|
|
|
pub trait Data {
|
|
fn exists(&self, room_id: &RoomId) -> Result<bool>;
|
|
}
|