10 lines
270 B
JavaScript
10 lines
270 B
JavaScript
|
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!');
|
||
|
}
|