JaBa/commands/Tickets/empty.js
Jonny_Bro (Nikita) aaa0d01c54 some tickets stuff
2023-07-07 17:34:23 +05:00

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