DiscordJS-Template/commands/admin/selfRoles.js

10 lines
270 B
JavaScript
Raw Normal View History

2024-01-26 18:29:20 +00:00
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!');
}