blob: a206decead325092e79094deb760c38ca7fa42b9 [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
TheCodedProf7b985d82023-06-08 16:40:41 -04006const subcommand: Awaited<ReturnType<typeof command>> = await command(
7 name,
8 description,
9 `nucleus`,
10 undefined,
11 undefined,
12 undefined,
13 undefined,
14 true
15);
PineaFan64486c42022-12-28 09:21:04 +000016
TheCodedProf088b1b22023-02-28 17:31:11 -050017export { name, description, subcommand as command };