blob: fa4a218abb3b687dfe3db110f5708b582f277a63 [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 = "settings";
4const description = "Change bot settings";
5
TheCodedProf7b985d82023-06-08 16:40:41 -04006const subcommand: Awaited<ReturnType<typeof command>> = await command(
7 name,
8 description,
9 "settings",
10 undefined,
11 undefined,
12 undefined,
13 ["ManageGuild"]
14);
PineaFan64486c42022-12-28 09:21:04 +000015
Skyler Greyda16adf2023-03-05 10:22:12 +000016export { name, description, subcommand as command };