From 617edfd0a2435634c8e8d4e044943a8b5f043c49 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Fri, 26 Jan 2024 19:29:20 +0100 Subject: [PATCH] initialize self role command --- commands/admin/self_roles.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 commands/admin/self_roles.js diff --git a/commands/admin/self_roles.js b/commands/admin/self_roles.js new file mode 100644 index 0000000..e2367f6 --- /dev/null +++ b/commands/admin/self_roles.js @@ -0,0 +1,9 @@ +import { SlashCommandBuilder } from 'discord.js'; + +export const data = new SlashCommandBuilder() + .setName('self_roles') + .setDescription('Manages reactions for self roles.'); +export async function execute(interaction) { + await interaction + .reply('Unimplemented!'); +}