Initial commit
This commit is contained in:
commit
07ec57a453
27 changed files with 1853 additions and 0 deletions
15
src/commands/help.js
Normal file
15
src/commands/help.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
const { Command } = require('discord-akairo');
|
||||
|
||||
class HelpCommand extends Command {
|
||||
constructor() {
|
||||
super('help', {
|
||||
aliases: ['help']
|
||||
});
|
||||
}
|
||||
|
||||
exec(message) {
|
||||
return message.util.send('Maybe later.');
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = HelpCommand;
|
Loading…
Add table
Add a link
Reference in a new issue