Files
speckle-server/packages/server/modules/cli/commands/bull.ts
T
2022-08-19 10:27:48 +03:00

14 lines
305 B
TypeScript

import { noop } from 'lodash'
import { CommandModule } from 'yargs'
const command: CommandModule = {
command: 'bull',
describe: 'Bull MQ related activities',
builder(yargs) {
return yargs.commandDir('bull', { extensions: ['js', 'ts'] }).demandCommand()
},
handler: noop
}
export = command