Create base effects command

This commit is contained in:
Ethan Lane 2024-11-23 17:20:47 +00:00
parent d7a5472759
commit 1be9ba23a3
3 changed files with 17 additions and 0 deletions

15
src/commands/effects.ts Normal file
View file

@ -0,0 +1,15 @@
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) {
}
}