mirror of
https://github.com/Mestima/luna.git
synced 2025-07-09 18:45:24 +00:00
Initial commit
This commit is contained in:
10
src/commands/ping/index.js
Normal file
10
src/commands/ping/index.js
Normal file
@ -0,0 +1,10 @@
|
||||
import { SlashCommandBuilder } from 'discord.js';
|
||||
|
||||
export default {
|
||||
data: new SlashCommandBuilder()
|
||||
.setName('ping')
|
||||
.setDescription('Replies with Pong!'),
|
||||
async execute(interaction) {
|
||||
await interaction.reply('Pong!');
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user