luna/src/commands/ping/index.js

11 lines
247 B
JavaScript

import { SlashCommandBuilder } from 'discord.js';
export default {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Replies with Pong!'),
async execute(interaction, api) {
await interaction.reply('Pong!');
}
};