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
Samuel Shuert27bf3cd2023-03-03 15:51:25 -05006const subcommand = await command(name, description, `nucleus`, undefined, undefined, undefined, undefined, true);
PineaFan64486c42022-12-28 09:21:04 +00007
Samuel Shuert27bf3cd2023-03-03 15:51:25 -05008export { name, description, subcommand as command };