blob: bd7fd14d969d2caa9e468e85d7c4dfd5571725f0 [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
TheCodedProf088b1b22023-02-28 17:31:11 -05006const subcommand = await command(name, description, `nucleus`, undefined, undefined, undefined, undefined, true);
PineaFan64486c42022-12-28 09:21:04 +00007
TheCodedProf088b1b22023-02-28 17:31:11 -05008export { name, description, subcommand as command };