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