blob: 0c8bc6be83f4650824eee9dd80193fa9acd64cb5 [file] [log] [blame]
PineaFan64486c42022-12-28 09:21:04 +00001import { command } from "../../utils/commandRegistration/slashCommandBuilder.js";
2
pineafan4f164f32022-02-26 22:07:12 +00003const name = "user";
4const description = "Commands for user info";
5
PineaFan64486c42022-12-28 09:21:04 +00006const subcommand = await command(name, description, `user`);
7
8export { name, description, subcommand as command };