mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2025-12-11 09:48:49 -05:00
21 lines
420 B
Rust
21 lines
420 B
Rust
mod commands;
|
|
|
|
use clap::Subcommand;
|
|
use conduwuit::Result;
|
|
use ruma::events::room::message::RoomMessageEventContent;
|
|
|
|
use crate::Command;
|
|
|
|
#[derive(Debug, Subcommand)]
|
|
pub(super) enum CheckCommand {
|
|
AllUsers,
|
|
}
|
|
|
|
pub(super) async fn process(
|
|
command: CheckCommand,
|
|
context: &Command<'_>,
|
|
) -> Result<RoomMessageEventContent> {
|
|
Ok(match command {
|
|
| CheckCommand::AllUsers => context.check_all_users().await?,
|
|
})
|
|
}
|