10 lines
374 B
JavaScript
10 lines
374 B
JavaScript
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.`);
|
|
},
|
|
}; |