generated from Baipyrus/DiscordJS-Template
basic subcommand handling
This commit is contained in:
parent
c8e3fc2f2c
commit
a0eb75e4ee
@ -28,5 +28,13 @@ export const data = new SlashCommandBuilder()
|
||||
);
|
||||
export async function execute(interaction) {
|
||||
const { options } = interaction;
|
||||
// const id = options.getString('id');
|
||||
|
||||
switch (options.getSubcommand()) {
|
||||
case 'create':
|
||||
const name = options.getString('name');
|
||||
break;
|
||||
case 'register':
|
||||
const id = options.getString('id');
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user