docker update + git fun

This commit is contained in:
2019-04-04 22:13:03 +11:00
parent 75fa6e7b8c
commit fd6e4ab922
3 changed files with 12 additions and 4 deletions

11
commands/hello.js Normal file
View File

@@ -0,0 +1,11 @@
module.exports = {
name: "Hello",
alias: ['hi'],
helptext: "Says G'day",
helphide: false,
permissions: ['READ_MESSAGES'],
category: 'general',
command: (client, msg) => {
msg.reply("G'day!")
}
}