summaryrefslogtreecommitdiff
path: root/src/commands/moderation/mod.rs
blob: 5a8cd084ab93c0406e12f1c922d6924487dcea39 (plain)
1
2
3
4
5
6
7
8
9
10
use crate::Data;

use eyre::Report;
use poise::Command;

mod clear;

pub fn to_commands() -> Vec<Command<Data, Report>> {
	vec![clear::clear_messages()]
}