updates for random and catgories

This commit is contained in:
John Facey
2021-12-23 15:20:03 -06:00
parent e0d8f981c3
commit 3d4d14a7d7
5 changed files with 41 additions and 8 deletions

11
commands/category.js Normal file
View File

@@ -0,0 +1,11 @@
var libFlayer = require("../libFlayer.js");
module.exports = {
name: 'categories',
description: 'Categories',
async execute(message) {
message.reply(
`Categories: [General, Entertainment, Sports, Tech]`
);
}
};