2023-11-27 00:02:34 +01:00
|
|
|
const { SlashCommandBuilder } = require('discord.js');
|
2023-11-23 21:21:59 +01:00
|
|
|
|
2023-11-27 00:02:34 +01:00
|
|
|
module.exports = {
|
|
|
|
data: new SlashCommandBuilder()
|
2023-11-23 21:21:59 +01:00
|
|
|
.setName('och')
|
2023-11-27 00:02:34 +01:00
|
|
|
.setDescription('och'),
|
|
|
|
async execute(interaction) {
|
|
|
|
await interaction.reply('och');
|
|
|
|
},
|
|
|
|
};
|