blob: fa4a218abb3b687dfe3db110f5708b582f277a63 [file] [log] [blame]
import { command } from "../../utils/commandRegistration/slashCommandBuilder.js";
const name = "settings";
const description = "Change bot settings";
const subcommand: Awaited<ReturnType<typeof command>> = await command(
name,
description,
"settings",
undefined,
undefined,
undefined,
["ManageGuild"]
);
export { name, description, subcommand as command };