2022-06-27 09:51:14 +01:00
|
|
|
const { Client, CommandInteraction } = require("discord.js");
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: "lampadaferens",
|
|
|
|
description: "Hull University",
|
|
|
|
type: 'CHAT_INPUT',
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {Client} client
|
|
|
|
* @param {CommandInteraction} interaction
|
|
|
|
* @param {String[]} args
|
|
|
|
*/
|
|
|
|
run: async (client, interaction, args) => {
|
2022-06-27 15:15:25 +01:00
|
|
|
interaction.reply({ files: ['https://c.tenor.com/N8A8lQ3g0YIAAAAd/chaseatlanticgifs-sarahmcfadyen.gif'] });
|
2022-06-27 09:51:14 +01:00
|
|
|
},
|
|
|
|
};
|