1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 02:29:26 +02:00

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
}