PineaFan | 64486c4 | 2022-12-28 09:21:04 +0000 | [diff] [blame^] | 1 | import { command } from "../../utils/commandRegistration/slashCommandBuilder.js"; |
2 | |||||
pineafan | ad54d75 | 2022-04-18 19:01:43 +0100 | [diff] [blame] | 3 | const name = "server"; |
4 | const description = "Commands for the server"; | ||||
5 | |||||
PineaFan | 64486c4 | 2022-12-28 09:21:04 +0000 | [diff] [blame^] | 6 | const subcommand = await command(name, description, `server`); |
7 | |||||
8 | export { name, description, subcommand as command }; |