1st commit Discord Bot

This commit is contained in:
johnfacey
2021-03-18 13:16:42 -05:00
commit 9ce9e994dc
14 changed files with 375 additions and 0 deletions

9
commands/help.js Normal file
View File

@@ -0,0 +1,9 @@
var libFlayer = require("../libFlayer.js");
module.exports = {
name: 'help',
description: 'Help',
execute(message) {
message.reply('For a list of available commands type !commands');
}
};