9 lines
345 B
JavaScript
Raw Normal View History

2023-11-19 23:59:41 +00:00
import { SlashCommandBuilder } from 'discord.js';
2023-11-17 23:24:32 +00:00
2023-11-19 23:59:41 +00:00
export const data = new SlashCommandBuilder()
.setName('server')
.setDescription('Provides information about the server.');
export async function execute(interaction) {
await interaction.reply(`This server is ${interaction.guild.name} and has ${interaction.guild.memberCount} members.`);
}