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);