This commit is contained in:
syuilo
2018-06-18 09:54:53 +09:00
parent a766faeae9
commit 80e5645a84
150 changed files with 305 additions and 2334 deletions

View File

@ -60,7 +60,7 @@ function main() {
/**
* Init master process
*/
async function masterMain(opt) {
async function masterMain(opt: any) {
let config: Config;
try {
@ -91,7 +91,7 @@ async function masterMain(opt) {
/**
* Init worker process
*/
async function workerMain(opt) {
async function workerMain(opt: any) {
if (!opt['only-processor']) {
// start server
await require('./server').default();