Skip to content

Commit

Permalink
Update for new module API
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Nov 1, 2009
1 parent b6b13ab commit fb5719b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions fu.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var createServer = require("/http.js").createServer;
var sys = require("/sys.js");
var createServer = require("http").createServer;
var sys = require("sys");
DEBUG = false;

var fu = exports;
Expand Down
4 changes: 2 additions & 2 deletions server.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
HOST = null; // localhost
PORT = 8001;

var fu = require("fu.js");
var sys = require("/sys.js");
var fu = require("./fu");
var sys = require("sys");

var MESSAGE_BACKLOG = 200;
var SESSION_TIMEOUT = 60 * 1000;
Expand Down

0 comments on commit fb5719b

Please sign in to comment.