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!'); +}