10 lines
220 B
JavaScript
10 lines
220 B
JavaScript
const { SlashCommandBuilder } = require('discord.js');
|
|
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('och')
|
|
.setDescription('och'),
|
|
async execute(interaction) {
|
|
await interaction.reply('och');
|
|
},
|
|
}; |