tuwunel/src/api/mod.rs
Jason Volk 7bc47e58d0 Add state_cache iteration for local pending invitees to room.
Signed-off-by: Jason Volk <jason@zemos.net>
2025-08-30 10:04:24 +00:00

11 lines
250 B
Rust

#![type_length_limit = "163840"] //TODO: REDUCE ME
#![allow(clippy::toplevel_ref_arg)]
pub mod client;
pub mod router;
pub mod server;
pub(crate) use self::router::{Ruma, RumaResponse, State};
tuwunel_core::mod_ctor! {}
tuwunel_core::mod_dtor! {}