meridian-bot/commands/general/ping.js
Yannis Perrot ed602b2643 1st
2024-02-19 15:43:17 +01:00

11 lines
241 B
JavaScript

const { SlashCommandBuilder } = require('discord.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Replies with Pong!'),
async execute(interaction) {
await interaction.reply('Pong!');
},
};