mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
7ba0777bd3
Signed-off-by: Jason Volk <jason@zemos.net>
17 lines
396 B
Rust
17 lines
396 B
Rust
pub mod client;
|
|
mod router;
|
|
pub mod routes;
|
|
pub mod server;
|
|
|
|
extern crate conduit_core as conduit;
|
|
extern crate conduit_service as service;
|
|
|
|
pub(crate) use conduit::{debug_info, debug_warn, utils, Error, Result};
|
|
pub(crate) use service::{pdu::PduEvent, services, user_is_local};
|
|
|
|
pub(crate) use self::router::Ruma;
|
|
pub use self::router::RumaResponse;
|
|
|
|
conduit::mod_ctor! {}
|
|
conduit::mod_dtor! {}
|