mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 13:14:58 +05:00
10 lines
238 B
JavaScript
10 lines
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');
|
||
|
},
|
||
|
};
|