Added stf namespace.

This commit is contained in:
Gunther Brunner
2014-02-18 20:32:45 +09:00
parent a1b0d136be
commit 347d9e9a55
10 changed files with 73 additions and 17 deletions

View File

@@ -0,0 +1,6 @@
var io = require('socket.io')
module.exports = function SocketServiceFactory() {
var socketService = io.connect()
return socketService
}