19 lines
522 B
JavaScript
19 lines
522 B
JavaScript
// Debug
|
|
const { DebugBuilder } = require("../utilities/debugBuilder.js");
|
|
const log = new DebugBuilder("client", "status");
|
|
// Modules
|
|
const { status } = require('../controllers/commandController');
|
|
// Utilities
|
|
|
|
const { SlashCommandBuilder } = require('discord.js');
|
|
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('status')
|
|
.setDescription('Check the status of the bot'),
|
|
example: "status",
|
|
isPrivileged: false,
|
|
async execute(interaction) {
|
|
await status({ interaction: interaction });
|
|
}
|
|
} |