Added gorb slash command

imgbot
kieranrobson 2022-05-13 10:47:40 +01:00
parent 9477bc8f79
commit 7ff59750c9
1 changed files with 16 additions and 0 deletions

16
SlashCommands/fun/gorb.js Normal file
View File

@ -0,0 +1,16 @@
const { Client, CommandInteraction } = require("discord.js");
module.exports = {
name: "gorb",
description: "returns gorb",
type: 'CHAT_INPUT',
/**
*
* @param {Client} client
* @param {CommandInteraction} interaction
* @param {String[]} args
*/
run: async (client, interaction, args) => {
interaction.followUp({ files: ['./images/gorb.jpg'] });
},
};