This commit is contained in:
2022-05-09 19:29:50 +02:00
parent d81722dec8
commit af29582c00
19 changed files with 209 additions and 6 deletions

15
commands/utility/hello.js Normal file
View File

@@ -0,0 +1,15 @@
const Discord = require('discord.js');
const config = require('../../configs/config.json');
module.exports = {
config: {
name: 'Hello',
description: '',
aliases: [""],
usage: '',
accessableby: "",
},
run: async (client, message, args) => {
message.channel.send("Hello <3");
}
}