Files
continuwuity/src/api/mod.rs
T

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

15 lines
329 B
Rust
Raw Normal View History

#![type_length_limit = "16384"] //TODO: reduce me
#![allow(clippy::toplevel_ref_arg)]
2024-06-06 18:21:02 +00:00
pub mod client;
2024-07-14 23:46:03 +00:00
pub mod router;
2024-06-05 04:32:58 +00:00
pub mod server;
2024-05-09 15:59:08 -07:00
2024-12-14 21:58:01 -05:00
extern crate conduwuit_core as conduwuit;
extern crate conduwuit_service as service;
2024-05-09 15:59:08 -07:00
2024-07-30 01:25:07 +00:00
pub(crate) use self::router::{Ruma, RumaResponse, State};
2024-06-16 21:32:08 +00:00
2024-12-14 21:58:01 -05:00
conduwuit::mod_ctor! {}
conduwuit::mod_dtor! {}