blob: 521b33867590161deaa08be43abca2ded6683c08 [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 = "nucleus";
4const description = "Commands relating to Nucleus itself";
5
PineaFandf4996f2023-01-01 14:20:06 +00006const subcommand = await command(name, description, `nucleus`)
PineaFan64486c42022-12-28 09:21:04 +00007
PineaFan538d3752023-01-12 21:48:23 +00008const allowedInDMs = true;
9
10export { name, description, subcommand as command, allowedInDMs };