feat: Add endpoints required for API-based takedowns and room bans

This commit is contained in:
timedout
2026-01-18 18:47:15 +00:00
parent b667a963cf
commit ebc8df1c4d
8 changed files with 202 additions and 18 deletions
+3 -2
View File
@@ -1,12 +1,13 @@
#![type_length_limit = "16384"] //TODO: reduce me
#![allow(clippy::toplevel_ref_arg)]
extern crate conduwuit_core as conduwuit;
extern crate conduwuit_service as service;
pub mod client;
pub mod router;
pub mod server;
extern crate conduwuit_core as conduwuit;
extern crate conduwuit_service as service;
pub mod admin;
pub(crate) use self::router::{Ruma, RumaResponse, State};