summaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
blob: 14b7b2bfb8b423bff7f074cf9c96e135d77915f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use crate::client::{Data, Error};

mod general;
mod moderation;

type Command = poise::Command<Data, Error>;

#[macro_export]
macro_rules! cmd {
	($module: ident, $name: ident) => {
		$module::$name::$name()
	};

	($module: ident, $name: ident, $func: ident) => {
		$module::$name::$func()
	};
}

pub fn all() -> Vec<Command> {
	vec![
		cmd!(general, ask),
		cmd!(general, bing),
		cmd!(general, config),
		cmd!(general, convert),
		cmd!(general, emoji),
		cmd!(general, pfp),
		cmd!(general, random),
		cmd!(general, version),
		cmd!(moderation, clear_messages),
	]
}