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 | |
TheCodedProf | 7b985d8 | 2023-06-08 16:40:41 -0400 | [diff] [blame^] | 6 | const subcommand: Awaited<ReturnType<typeof command>> = await command( |
| 7 | name, |
| 8 | description, |
| 9 | `nucleus`, |
| 10 | undefined, |
| 11 | undefined, |
| 12 | undefined, |
| 13 | undefined, |
| 14 | true |
| 15 | ); |
PineaFan | 64486c4 | 2022-12-28 09:21:04 +0000 | [diff] [blame] | 16 | |
TheCodedProf | 088b1b2 | 2023-02-28 17:31:11 -0500 | [diff] [blame] | 17 | export { name, description, subcommand as command }; |