doccam-pi/communicator.js~

19 lines
859 B
JavaScript
Raw Normal View History

2017-04-22 12:12:16 +12:00
///////////////////////////////////////////////////////////////////////////////
// A socket.js wrapper to abstract the communication with the server. //
///////////////////////////////////////////////////////////////////////////////
const socketio = require('socket.io-client');
///////////////////////////////////////////////////////////////////////////////
// Declarations //
///////////////////////////////////////////////////////////////////////////////
// Object oriented `this`.
let self = false;
///////////////////////////////////////////////////////////////////////////////
// Code //
///////////////////////////////////////////////////////////////////////////////
module.exports = function Communicator(){}