Remove the replit stuff

This commit is contained in:
ION606
2022-04-14 11:08:42 -04:00
parent b07d8cfd8a
commit b8ce2b8c68
19 changed files with 352 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
module.exports ={
name: "help",
description: "Gets help for all of Selmer Bot's commands",
execute(message, Client) {
const newEmbed = new Discord.MessageEmbed()
.setColor('#002eff')
.setTitle('My professional resume')
//.setURL('https://discordjs.guide/popular-topics/embeds.html#embed-preview')
//.setDescription('My professional resume')
.setImage('https://github.com/ION606/selmerBot/blob/main/Sleemer_Bringsjorgend.png?raw=true')
message.channel.send({ embeds: [newEmbed] });
}
}