import { CommandInteraction, SlashCommandBuilder } from "discord.js"; import { Command } from "../type/command"; export default class Inventory extends Command { constructor() { super(); this.CommandBuilder = new SlashCommandBuilder() .setName('inventory') .setDescription('View your inventory'); } public override async execute(interaction: CommandInteraction) { } }