Add och command

This commit is contained in:
baz 2023-11-23 20:21:59 +00:00
parent c4344c6bac
commit 56cab90b16
1 changed files with 9 additions and 0 deletions

9
commands/testing/och.js Normal file
View File

@ -0,0 +1,9 @@
import { SlashCommandBuilder } from 'discord.js';
export const data = new SlashCommandBuilder()
.setName('och')
.setDescription('och');
export async function execute(interaction) {
await interaction.reply('och');
}