summaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
blob: b8d0381eaaa102eb09964f461fc16ba026d7122d (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
32
33
34
35
36
37
38
39
40
41
42
use crate::client::{Data, Error};

mod general;
mod moderation;
mod optional;

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> {
	let mut all_commands = global();
	all_commands.append(&mut optional());
	all_commands
}

pub fn global() -> 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),
	]
}

pub fn optional() -> Vec<Command> {
	vec![cmd!(optional, teawiespam), cmd!(optional, uwurandom)]
}