summaryrefslogtreecommitdiff
path: root/src/commands/moderation/mod.rs
blob: 218ad16b1e3e0cc284455a5bcf0bcaf65103bf7a (plain)
1
2
3
4
5
6
7
8
9
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()]
}