blob: dc9737033c2bc9b2015e30f746ede29fc03a9e51 [file] [log] [blame]
pineafan4f164f32022-02-26 22:07:12 +00001import { CommandInteraction } from "discord.js";
2import { SlashCommandBuilder } from "@discordjs/builders";
3import { WrappedCheck } from "jshaiku";
4
5const command = new SlashCommandBuilder()
6 .setName("privacy")
7 .setDescription("Shows info about Nucleus' privacy options")
8
9const callback = (interaction: CommandInteraction) => {
10 interaction.reply("Command incomplete [privacy]");
11}
12
13const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
14 return true;
15}
16
17export { command };
18export { callback };
19export { check };