From ce4eec54bc1564caa9eefef5f2ac4e6173fe4e74 Mon Sep 17 00:00:00 2001 From: mrjvs Date: Sun, 14 Sep 2025 16:07:05 +0200 Subject: [PATCH] chore: remove unimplemented import cmd --- src/cli/import.cmd.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/cli/import.cmd.ts b/src/cli/import.cmd.ts index 3dbf620..29dcf16 100644 --- a/src/cli/import.cmd.ts +++ b/src/cli/import.cmd.ts @@ -1,14 +1,6 @@ import { Command } from 'commander'; import { seedCmd } from './seed.cmd'; -const oldCdnCmd = new Command('old-cdn') - .description('Copy old CDN format data into new database') - .argument('', 'CDN folder to import') - .action(async (_folder: string) => { - // const ctx = getCliContext(); - }); - export const importCmd = new Command('import') .description('Import existing files into BOSS') - .addCommand(oldCdnCmd) .addCommand(seedCmd);