Files
continuwuity/src/admin/check/mod.rs
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
383 B
Rust
Raw Normal View History

mod commands;
use clap::Subcommand;
2024-12-14 21:58:01 -05:00
use conduwuit::Result;
2025-01-04 16:57:07 +00:00
use crate::admin_command_dispatch;
2025-01-04 16:57:07 +00:00
#[admin_command_dispatch]
#[derive(Debug, Subcommand)]
2025-05-24 00:28:09 +01:00
pub enum CheckCommand {
2026-01-12 10:51:17 -05:00
/// Uses the iterator in `src/database/key_value/users.rs` to iterator over
/// every user in our database (remote and local). Reports total count, any
/// errors if there were any, etc
2025-01-04 16:57:07 +00:00
CheckAllUsers,
}