mirror of
https://github.com/Threnklyn/MinecraftChat.git
synced 2026-05-19 04:43:28 +02:00
13 lines
136 B
JavaScript
13 lines
136 B
JavaScript
/**
|
|
* Socket Service
|
|
*/
|
|
|
|
module.exports = function() {
|
|
|
|
var io = io;
|
|
|
|
var socket = io(window.location.host);
|
|
return socket;
|
|
|
|
};
|