Initial commit

This commit is contained in:
2023-03-28 18:22:35 +03:00
commit f5d31aa2e5
8 changed files with 784 additions and 0 deletions

View 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!');
}
};