12 lines
379 B
JavaScript
12 lines
379 B
JavaScript
const { SlashCommandBuilder } = require('discord.js');
|
|
const fn = require('../functions.js');
|
|
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('setupinfo')
|
|
.setDescription('View information about how the bot is set up in your server'),
|
|
execute(interaction) {
|
|
const embed = fn.builders.embed(fn.getInfo(interaction.guildId));
|
|
interaction.reply(embed);
|
|
},
|
|
}; |