First commit for dscrdbt

This commit is contained in:
2025-04-15 16:15:56 -06:00
commit 11a100eacf
13 changed files with 482 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
const { SlashCommandBuilder } = require('discord.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('server')
.setDescription('Provides information about the server.'),
async execute(interaction) {
await interaction.reply(`This server is ${interaction.guild.name} and has
${interaction.guild.memberCount} members.`);
},
};