This commit is contained in:
parent
78fcdeeca5
commit
0e1bc43ac4
1 changed files with 12 additions and 0 deletions
|
@ -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) {
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue