adding key command template

This commit is contained in:
John Facey
2021-12-22 17:36:12 -06:00
parent 6771bf35f5
commit e0d8f981c3
2 changed files with 14 additions and 0 deletions

13
commands/key.js Normal file
View File

@@ -0,0 +1,13 @@
var libFlayer = require("../libFlayer.js");
module.exports = {
name: 'key',
description: 'Key',
execute(message) {
message.reply(
`
Key loading not yet available - loading from local source
`
);
}
};