JaBa/commands/Tickets/empty.js

10 lines
238 B
JavaScript
Raw Normal View History

2023-07-07 17:34:23 +05:00
const { SlashCommandBuilder } = require('discord.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('test')
.setDescription('Replies with test'),
async execute(interaction) {
await interaction.reply('test');
},
};