diff --git a/src/index.ts b/src/index.ts index 290c769..bf69233 100644 --- a/src/index.ts +++ b/src/index.ts @@ -52,15 +52,6 @@ program // .option('-y, --yes', "Say yes to all prompts") .option('-e, --env [path]', "Supply a path to a .env") .action(async (...args) => importDynamic('command-clear.js').then((m) => m.commandClear(...args)))); -program - .command('app') - .description('manage your discord application') - .addCommand( - new Command('update') - .description("Refresh your discord application.") - .option('-W --suppress-warnings', 'suppress experimental warning') - .action(async (...args) => importDynamic('app-update.js').then(m => m.appUpdate(...args)))) - program .command('build') .description('Build your bot')