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.

13 lines
201 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)]
2024-06-23 09:55:51 +00:00
pub(super) enum CheckCommand {
2025-01-04 16:57:07 +00:00
CheckAllUsers,
}