Skip to content

Commit

Permalink
Style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
David committed Dec 22, 2011
1 parent 0fb551a commit 3ff45a1
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions lib/subway.js
Expand Up @@ -3,16 +3,14 @@ var irc = require('irc'),
io = require('socket.io');

var Subway = function() {
var self = this;
self.app = app;
self.io = io;
self.irc = irc;
this.app = app;
this.io = io;
this.irc = irc;
}

Subway.prototype.start = function () {
var self = this;
self.app.listen(3000);
self.io.listen(self.app);
this.app.listen(3000);
this.io.listen(self.app);
}

exports.subway = new Subway();

0 comments on commit 3ff45a1

Please sign in to comment.