mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-19 15:30:00 +00:00
19 lines
588 B
TypeScript
19 lines
588 B
TypeScript
import { commandTypeHelpers as ct } from "../../../commandTypes";
|
|
import { getRoleInfoEmbed } from "../functions/getRoleInfoEmbed";
|
|
import { utilityCmd } from "../types";
|
|
|
|
export const RoleInfoCmd = utilityCmd({
|
|
trigger: ["roleinfo"],
|
|
description: "Show information about a role",
|
|
usage: "!role 106391128718245888",
|
|
permission: "can_roleinfo",
|
|
|
|
signature: {
|
|
role: ct.role({ required: true }),
|
|
},
|
|
|
|
async run({ message, args, pluginData }) {
|
|
const embed = await getRoleInfoEmbed(pluginData, args.role, message.author.id);
|
|
message.channel.send({ embed });
|
|
},
|
|
});
|