blob: d96895f847bcd80acb3696d59852489da32d09ac [file] [log] [blame]
import { command } from "../../utils/commandRegistration/slashCommandBuilder.js";
const name = "server";
const description = "Commands for the server";
const subcommand: Awaited<ReturnType<typeof command>> = await command(name, description, `server`);
export { name, description, subcommand as command };