card-drop/src/commands/inventory.ts

16 lines
No EOL
427 B
TypeScript

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) {
}
}