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
381 B
Rust
Raw Normal View History

2024-06-06 18:21:02 +00:00
pub mod client;
2024-06-16 21:29:59 +00:00
pub mod routes;
2024-05-23 18:44:19 +00:00
mod ruma_wrapper;
2024-06-05 04:32:58 +00:00
pub mod server;
2024-05-09 15:59:08 -07:00
extern crate conduit_core as conduit;
extern crate conduit_service as service;
2024-06-01 01:36:37 +00:00
pub(crate) use conduit::{debug_info, debug_warn, utils, Error, Result};
pub(crate) use ruma_wrapper::{Ruma, RumaResponse};
2024-05-09 15:59:08 -07:00
pub(crate) use service::{pdu::PduEvent, services, user_is_local};
conduit::mod_ctor! {}
conduit::mod_dtor! {}