PineaFan | 64486c4 | 2022-12-28 09:21:04 +0000 | [diff] [blame] | 1 | import { command } from "../../utils/commandRegistration/slashCommandBuilder.js"; |
| 2 | |
pineafan | 4f164f3 | 2022-02-26 22:07:12 +0000 | [diff] [blame] | 3 | const name = "nucleus"; |
| 4 | const description = "Commands relating to Nucleus itself"; |
| 5 | |
PineaFan | df4996f | 2023-01-01 14:20:06 +0000 | [diff] [blame] | 6 | const subcommand = await command(name, description, `nucleus`) |
PineaFan | 64486c4 | 2022-12-28 09:21:04 +0000 | [diff] [blame] | 7 | |
PineaFan | 538d375 | 2023-01-12 21:48:23 +0000 | [diff] [blame^] | 8 | const allowedInDMs = true; |
| 9 | |
| 10 | export { name, description, subcommand as command, allowedInDMs }; |