hullcss-discord-bot/SlashCommands/general/links.js

22 lines
638 B
JavaScript
Raw Normal View History

2022-05-13 10:58:21 +01:00
const { Client, CommandInteraction, MessageEmbed } = require("discord.js");
module.exports = {
name: "links",
description: "returns links of Hullcss",
type: 'CHAT_INPUT',
/**
*
* @param {Client} client
* @param {CommandInteraction} interaction
* @param {String[]} args
*/
run: async (client, interaction, args) => {
const embed = new MessageEmbed()
.setTitle("Links!")
.setColor('GREEN')
2022-07-01 18:46:51 +01:00
.setFooter({ text: `Called By: ${interaction.user.tag}`})
2022-07-24 12:07:32 +01:00
.addField('Find us here:','https://hullcss.org')
interaction.reply({ embeds: [embed]});
2022-05-13 10:58:21 +01:00
},
2022-07-24 12:07:32 +01:00
};