2023-11-20 00:59:41 +01:00
|
|
|
import { SlashCommandBuilder } from 'discord.js';
|
2023-11-18 00:24:15 +01:00
|
|
|
|
2023-11-20 00:59:41 +01:00
|
|
|
export const data = new SlashCommandBuilder()
|
|
|
|
.setName('ping')
|
|
|
|
.setDescription('Replies with pong!');
|
|
|
|
|
|
|
|
export async function execute(interaction) {
|
|
|
|
await interaction.reply('Pong!');
|
|
|
|
}
|