2024-11-06 06:20:39 +00:00
|
|
|
#![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
|
|
|
|
2025-02-23 01:17:45 -05:00
|
|
|
pub(crate) use conduwuit::{Error, Result, debug_info, pdu::PduEvent, utils};
|
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! {}
|