added help and say commands

This commit is contained in:
SileNce5k 2021-02-14 11:54:07 +01:00
parent 66e3d8c2d2
commit ae1f1eac43
No known key found for this signature in database
GPG key ID: C507260E7F2583AD
3 changed files with 97 additions and 0 deletions

7
commands/say.js Normal file
View file

@ -0,0 +1,7 @@
module.exports = {
name: 'say',
description: 'Repeats arguments',
execute(message, args) {
message.channel.send(args.join(" "))
}
};