blob: f546d512dd89f42b5f46ae0c15ad67b8bbc0ab1a [file] [log] [blame]
PineaFan64486c42022-12-28 09:21:04 +00001import { command } from "../../utils/commandRegistration/slashCommandBuilder.js";
2
pineafan4f164f32022-02-26 22:07:12 +00003const name = "role";
4const description = "Change roles for users";
5
PineaFan64486c42022-12-28 09:21:04 +00006const subcommand = await command(name, description, `role`);
7
8export { name, description, subcommand as command };