Remove sync/v4 to reduce maintenance/refactor burden.

Thank you for serving us well 🫡

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-04-26 05:57:17 +00:00
parent c59037cd75
commit 6e6c84855c
3 changed files with 1 additions and 897 deletions

View File

@@ -1,5 +1,4 @@
mod v3;
mod v4;
mod v5;
use futures::{StreamExt, pin_mut};
@@ -16,9 +15,7 @@ use tuwunel_core::{
};
use tuwunel_service::Services;
pub(crate) use self::{
v3::sync_events_route, v4::sync_events_v4_route, v5::sync_events_v5_route,
};
pub(crate) use self::{v3::sync_events_route, v5::sync_events_v5_route};
pub(crate) const DEFAULT_BUMP_TYPES: &[TimelineEventType; 6] =
&[CallInvite, PollStart, Beacon, RoomEncrypted, RoomMessage, Sticker];