initialize self role command

This commit is contained in:
Baipyrus 2024-01-26 19:29:20 +01:00
parent 3f1495cd07
commit 617edfd0a2

View File

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