silvanus/slash-commands/setupinfo.js
Skylar Grant 52f2206b55 Revert "Pull from treeanalyzer"
This reverts commit d3ac2fc869.
2023-01-21 09:58:32 -05:00

12 lines
387 B
JavaScript

const { SlashCommandBuilder } = require('discord.js');
const fn = require('../modules/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);
},
};