Files
tuwunel/src/api/mod.rs
2026-01-28 05:58:05 +00:00

15 lines
338 B
Rust

#![type_length_limit = "262144"] //TODO: REDUCE ME
#![expect(clippy::toplevel_ref_arg)]
#![expect(clippy::duration_suboptimal_units)] // remove after MSRV 1.91
pub mod client;
pub mod router;
pub mod server;
use log as _;
pub(crate) use self::router::{Ruma, RumaResponse, State};
tuwunel_core::mod_ctor! {}
tuwunel_core::mod_dtor! {}