mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
removed node-fork, using native child_process now, the API is the same
This commit is contained in:
parent
25653b4d58
commit
b5b10ba0b9
3 changed files with 29 additions and 7 deletions
|
|
@ -1,12 +1,12 @@
|
|||
define([
|
||||
"Lobby/User",
|
||||
"Game/Server/Channel",
|
||||
"node-fork"
|
||||
"child_process"
|
||||
],
|
||||
|
||||
function(User, Channel, nodeFork) {
|
||||
function(User, Channel, childProcess) {
|
||||
|
||||
var fork = nodeFork.fork;
|
||||
var fork = childProcess.fork;
|
||||
|
||||
function Coordinator() {
|
||||
this.channels = {};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue