Files
stats/packages/cli/src/cli.ts
Carl-Gerhard Lindesvärd 32e91959f6 chore(root): migrate to biome
2024-09-18 23:46:11 +02:00

25 lines
294 B
TypeScript

import arg from 'arg';
import importer from './importer';
function cli() {
const args = arg(
{
'--help': Boolean,
},
{
permissive: true,
},
);
const [command] = args._;
switch (command) {
case 'import': {
return importer();
}
}
}
cli();