Initial commit

This commit is contained in:
1computer1 2019-03-12 05:09:46 -04:00
commit 07ec57a453
27 changed files with 1853 additions and 0 deletions

15
src/commands/about.js Normal file
View 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;