blob: 250951bd57ad6a14c4faa16533bb0f0eb00c46d0 [file] [log] [blame]
PineaFan64486c42022-12-28 09:21:04 +00001import { command } from "../../utils/commandRegistration/slashCommandBuilder.js";
2
pineafanad54d752022-04-18 19:01:43 +01003const name = "server";
4const description = "Commands for the server";
5
PineaFan64486c42022-12-28 09:21:04 +00006const subcommand = await command(name, description, `server`);
7
8export { name, description, subcommand as command };