10 lines
293 B
TypeScript
10 lines
293 B
TypeScript
import { CommandInteraction, SlashCommandBuilder } from "discord.js";
|
|
|
|
export default {
|
|
data: new SlashCommandBuilder()
|
|
.setName('ping')
|
|
.setDescription('Pong again!'),
|
|
async execute(interaction : CommandInteraction) {
|
|
await interaction.reply('Pong !');
|
|
}
|
|
} |