mirror of
https://github.com/Mestima/luna.git
synced 2025-05-05 21:50:15 +00:00
11 lines
247 B
JavaScript
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!');
|
|
}
|
|
};
|