mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
13 lines
351 B
JavaScript
13 lines
351 B
JavaScript
import { program } from 'commander';
|
|
|
|
program
|
|
.version('0.0.1')
|
|
.description('An application for pizzas ordering')
|
|
.command('tenants:migrate')
|
|
.description('Migrate all tenants or the given tenant id.')
|
|
.option('-t, --tenant_id [tenant_id]', 'Which tenant id do you migrate.')
|
|
.action(async () => {
|
|
|
|
});
|
|
|
|
program.parse(process.argv); |