2023-01-19 01:10:05 +00:00
|
|
|
const { SlashCommandBuilder } = require('discord.js');
|
2023-01-19 17:44:49 +00:00
|
|
|
const fn = require('../modules/functions.js');
|
2023-01-19 01:10:05 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
},
|
|
|
|
};
|