Files
discordbot-ts-template/src/commands/utility/ping.ts

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 !');
}
}