TheOchulus/commands/testing/och.js

9 lines
221 B
JavaScript
Raw Normal View History

2023-11-23 21:21:59 +01:00
import { SlashCommandBuilder } from 'discord.js';
export const data = new SlashCommandBuilder()
.setName('och')
.setDescription('och');
export async function execute(interaction) {
await interaction.reply('och');
}