From 56cab90b168cf1a7588c18c19d47a7bb4815f86c Mon Sep 17 00:00:00 2001 From: baz Date: Thu, 23 Nov 2023 20:21:59 +0000 Subject: [PATCH] Add och command --- commands/testing/och.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 commands/testing/och.js diff --git a/commands/testing/och.js b/commands/testing/och.js new file mode 100644 index 0000000..41304c3 --- /dev/null +++ b/commands/testing/och.js @@ -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'); +} \ No newline at end of file