9 lines
239 B
JavaScript
9 lines
239 B
JavaScript
import { SlashCommandBuilder } from 'discord.js';
|
|
|
|
export const data = new SlashCommandBuilder()
|
|
.setName('ping')
|
|
.setDescription('Replies with pong!');
|
|
|
|
export async function execute(interaction) {
|
|
await interaction.reply('Pong!');
|
|
} |