mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2025-12-13 02:39:02 -05:00
11 lines
331 B
Rust
11 lines
331 B
Rust
use crate::Result;
|
|
use std::{collections::HashSet, sync::Arc};
|
|
|
|
pub trait Data: Send + Sync {
|
|
fn get_cached_eventid_authchain(
|
|
&self,
|
|
shorteventid: &[u64],
|
|
) -> Result<Option<Arc<HashSet<u64>>>>;
|
|
fn cache_auth_chain(&self, shorteventid: Vec<u64>, auth_chain: Arc<HashSet<u64>>)
|
|
-> Result<()>;
|
|
}
|