Trying some upgrades to command loading

This commit is contained in:
2023-12-31 09:39:25 -05:00
parent 7afbb169e2
commit 2f51c18a69
4 changed files with 23 additions and 8 deletions

View File

@@ -1,6 +1,7 @@
const { SlashCommandBuilder } = require('discord.js');
module.exports = {
enabled: true,
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Replies with Pong!'),

View File

@@ -1,6 +1,7 @@
const { SlashCommandBuilder } = require('discord.js');
module.exports = {
enabled: true,
data: new SlashCommandBuilder()
.setName('server')
.setDescription('Provides information about the server.'),

View File

@@ -1,6 +1,7 @@
const { SlashCommandBuilder } = require('discord.js');
module.exports = {
enabled: true,
data: new SlashCommandBuilder()
.setName('user')
.setDescription('Provides information about the user.'),