UNPKG

233 BPlain TextView Raw
1#!/usr/bin/env node
2
3'use strict';
4
5const debug = require('debug')('egg-bin:start-cluster');
6const options = JSON.parse(process.argv[2]);
7debug('start cluster options: %j', options);
8require(options.framework).startCluster(options);