blob: a9dfdb08411bad36074895e89a6c27a01778e618 [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 = "mod";
4const description = "Perform moderator actions";
5
TheCodedProf7b985d82023-06-08 16:40:41 -04006const subcommand: Awaited<ReturnType<typeof command>> = await command(name, description, `mod`);
PineaFan64486c42022-12-28 09:21:04 +00007
Skyler Greyda16adf2023-03-05 10:22:12 +00008export { name, description, subcommand as command };