10 lines
220 B
JavaScript
Raw Normal View History

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