mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
10 lines
No EOL
238 B
JavaScript
10 lines
No EOL
238 B
JavaScript
const { SlashCommandBuilder } = require('discord.js');
|
|
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('test')
|
|
.setDescription('Replies with test'),
|
|
async execute(interaction) {
|
|
await interaction.reply('test');
|
|
},
|
|
}; |