diff --git a/commands/admin/custom_vc/slash.js b/commands/admin/custom_vc/slash.js index 648c1a8..33d4a59 100644 --- a/commands/admin/custom_vc/slash.js +++ b/commands/admin/custom_vc/slash.js @@ -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; + } }