UNPKG

touhou-tagger

Version:

从 THBWiki 自动填写东方 Project CD 曲目信息.

13 lines (12 loc) 382 B
import { CliDumper } from './dumper.js'; import { getCliOptions } from './options.js'; export const dump = async () => { const cliOptions = getCliOptions(); if (cliOptions.batch) { const { runBatchDump } = await import('./batch.js'); await runBatchDump(cliOptions.batch, cliOptions.batchDepth); } else { await new CliDumper().run(); } };