WIP: Start of list command
Some checks failed
Test / build (push) Failing after 12s

This commit is contained in:
Ethan Lane 2024-11-25 19:09:02 +00:00
parent 78fcdeeca5
commit 0e1bc43ac4

View file

@ -14,5 +14,17 @@ export default class Effects extends Command {
}
public override async execute(interaction: CommandInteraction) {
if (!interaction.isChatInputCommand()) return;
const subcommand = interaction.options.getSubcommand();
switch (subcommand) {
case "list":
await this.List(interaction);
break;
}
}
private async List(interaction: CommandInteraction) {
}
}