Added gorb slash command
parent
9477bc8f79
commit
7ff59750c9
|
@ -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'] });
|
||||||
|
},
|
||||||
|
};
|
Loading…
Reference in New Issue