split admin command enum from handler

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-07-22 22:24:17 +00:00
parent 263e338088
commit ccfa939bd3
6 changed files with 89 additions and 84 deletions

View file

@ -1,18 +1,20 @@
#![recursion_limit = "168"]
#![allow(clippy::wildcard_imports)]
pub(crate) mod admin;
pub(crate) mod handler;
mod tests;
pub(crate) mod utils;
pub(crate) mod appservice;
pub(crate) mod check;
pub(crate) mod debug;
pub(crate) mod federation;
pub(crate) mod handler;
pub(crate) mod media;
pub(crate) mod query;
pub(crate) mod room;
pub(crate) mod server;
mod tests;
pub(crate) mod user;
pub(crate) mod utils;
extern crate conduit_api as api;
extern crate conduit_core as conduit;
@ -23,6 +25,8 @@ pub(crate) use service::services;
pub(crate) use crate::utils::{escape_html, get_room_info};
pub(crate) const PAGE_SIZE: usize = 100;
mod_ctor! {}
mod_dtor! {}