mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-17 07:41:23 +01:00
6 lines
126 B
Rust
6 lines
126 B
Rust
use ruma::RoomId;
|
|
use crate::Result;
|
|
|
|
pub trait Data: Send + Sync {
|
|
fn exists(&self, room_id: &RoomId) -> Result<bool>;
|
|
}
|