mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-06-27 09:34:51 +02:00
15 lines
357 B
Rust
15 lines
357 B
Rust
#![allow(clippy::toplevel_ref_arg)]
|
|
|
|
pub mod client;
|
|
pub mod router;
|
|
pub mod server;
|
|
|
|
extern crate conduwuit_core as conduwuit;
|
|
extern crate conduwuit_service as service;
|
|
|
|
pub(crate) use conduwuit::{Error, Result, debug_info, pdu::PduEvent, utils};
|
|
|
|
pub(crate) use self::router::{Ruma, RumaResponse, State};
|
|
|
|
conduwuit::mod_ctor! {}
|
|
conduwuit::mod_dtor! {}
|