Parent Directory
|
Revision Log
chore: add trunk
1 | #ifndef SUDOBOT_COMMANDS_COMMANDS_H |
2 | #define SUDOBOT_COMMANDS_COMMANDS_H |
3 | |
4 | #include <stdlib.h> |
5 | #include "../core/command.h" |
6 | #include "../commands/settings/about.h" |
7 | |
8 | static struct command_info const command_list[] = { |
9 | { "about", &command_about, CMD_MODE_BASIC, "Shows information about the bot", DISCORD_APPLICATION_CHAT_INPUT }, |
10 | }; |
11 | |
12 | static size_t command_count = sizeof (command_list) / sizeof (command_list[0]); |
13 | |
14 | #endif /* SUDOBOT_COMMANDS_COMMANDS_H */ |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |