@mbc-cqrs-serverless/cli
Version:
a CLI to get started with MBC CQRS serverless framework
15 lines (14 loc) • 552 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.newCommand = newCommand;
const new_action_1 = __importDefault(require("../actions/new.action"));
function newCommand(program) {
program
.command('new [name]')
.alias('n')
.description('Generate a new CQRS application using the MBC CQRS serverless framework')
.action(new_action_1.default);
}