mirror of
https://github.com/litruv/DAdmin.git
synced 2026-07-24 02:36:11 +10:00
11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
module.exports = {
|
|
name: "Hello",
|
|
alias: ['hi'],
|
|
helptext: "Says G'day",
|
|
helphide: false,
|
|
permissions: ['READ_MESSAGES'],
|
|
category: 'general',
|
|
command: (client, msg) => {
|
|
msg.reply("G'day Mate!")
|
|
}
|
|
} |