card-drop/src/commands/effects.ts

15 lines
407 B
TypeScript

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