Files
tuwunel/src/api/mod.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
338 B
Rust
Raw Normal View History

#![type_length_limit = "262144"] //TODO: REDUCE ME
2026-01-22 21:48:41 +05:00
#![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! {}