diff options
| author | seth <[email protected]> | 2024-02-18 18:13:32 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2024-02-18 18:38:30 -0500 |
| commit | f2cb41b11aa247ae1425d10c9162e7386089583c (patch) | |
| tree | e43f3bec0a56d47d8b048f646aece2e1c8eccea7 /src/commands/moderation/mod.rs | |
| parent | 0bf172a14076a929b095a3c02ec14ed9ab62b8a4 (diff) | |
add clear_messages command
Diffstat (limited to 'src/commands/moderation/mod.rs')
| -rw-r--r-- | src/commands/moderation/mod.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/commands/moderation/mod.rs b/src/commands/moderation/mod.rs new file mode 100644 index 0000000..218ad16 --- /dev/null +++ b/src/commands/moderation/mod.rs @@ -0,0 +1,10 @@ +use crate::Data; + +use color_eyre::eyre::Report; +use poise::Command; + +mod clear; + +pub fn to_commands() -> Vec<Command<Data, Report>> { + vec![clear::clear_messages()] +} |
