NoMoreAcronyms/commands/ping.ts

12 lines
318 B
TypeScript

2023-03-31 00:34:58 +07:00
const { SlashCommandBuilder, Discord } = require('discord.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Replies with Pong!'),
async execute(interaction) {
await interaction.reply('Pong!');
console.log("User " + interaction.user.tag + " ran /ping");
},
};