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