initial upload

This commit is contained in:
ReaperOfVeriod
2025-08-03 16:19:58 +02:00
parent 77f4691ccc
commit ef7e9536b6
11 changed files with 614 additions and 0 deletions
+11
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) {
// interaction.guild is the object representing the Guild in which the command was run
await interaction.reply(`This server is ${interaction.guild.name} and has ${interaction.guild.memberCount} members.`);
},
};