ping: commit initial file

This commit is contained in:
Seaswimmer 2023-08-21 11:23:36 -04:00
parent d175a967a8
commit 896e437766
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

10
commands/ping.js Normal file
View file

@ -0,0 +1,10 @@
const { SlashCommandBuilder } = require('discord.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('Ping')
.setDescription('Replies with Pong!'),
async execute(interaction) {
await interaction.reply('Pong!');
},
};