mirror of
https://github.com/ahmadk953/poixpixel-discord-bot.git
synced 2025-04-02 09:44:14 +00:00
9 lines
No EOL
287 B
TypeScript
9 lines
No EOL
287 B
TypeScript
import { SlashCommandBuilder, CommandInteraction } from 'discord.js';
|
|
|
|
export const data = new SlashCommandBuilder()
|
|
.setName('ping')
|
|
.setDescription('Replies with Pong!');
|
|
|
|
export async function execute(interaction: CommandInteraction) {
|
|
return interaction.reply('Pong!');
|
|
} |