hullcss-discord-bot/SlashCommands/fun/torch.js

16 lines
473 B
JavaScript
Raw Normal View History

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) => {
interaction.reply({ files: ['https://c.tenor.com/N8A8lQ3g0YIAAAAd/chaseatlanticgifs-sarahmcfadyen.gif'] });
2022-06-27 09:51:14 +01:00
},
};