Files
speckle-server/packages/server/modules/cli/commands/db.js
T
2022-03-29 16:30:49 +03:00

11 lines
219 B
JavaScript

/** @type {import('yargs').CommandModule} */
const command = {
command: 'db',
describe: 'DB & Migration actions',
builder(yargs) {
return yargs.commandDir('db').demandCommand()
}
}
module.exports = command