Files
tuwunel/src/service/rooms/auth_chain/data.rs

8 lines
256 B
Rust
Raw Normal View History

use std::collections::HashSet;
2022-09-07 13:25:51 +02:00
use crate::Result;
pub trait Data {
2022-09-07 13:25:51 +02:00
fn get_cached_eventid_authchain(&self, shorteventid: u64) -> Result<HashSet<u64>>;
fn cache_eventid_authchain(&self, shorteventid: u64, auth_chain: &HashSet<u64>) -> Result<()>;
}