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
43
44
45
46
47
48
49
50
51
52
53
|
use crate::{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 to_vec() -> Vec<Command> {
vec![
cmd!(general, ask),
cmd!(general, bing),
cmd!(general, config),
cmd!(general, convert),
cmd!(general, random),
cmd!(general, version),
cmd!(moderation, clear_messages),
cmd!(optional, copypasta),
cmd!(optional, teawiespam),
cmd!(optional, uwurandom),
]
}
pub fn to_vec_global() -> Vec<Command> {
vec![
cmd!(general, ask),
cmd!(general, bing),
cmd!(general, config),
cmd!(general, convert),
cmd!(general, random),
cmd!(general, version),
cmd!(moderation, clear_messages),
]
}
pub fn to_vec_optional() -> Vec<Command> {
vec![
cmd!(optional, copypasta),
cmd!(optional, teawiespam),
cmd!(optional, uwurandom),
]
}
|