mirror of
https://github.com/vale981/doccam-pi
synced 2025-03-05 17:31:39 -05:00
20 lines
861 B
Text
20 lines
861 B
Text
![]() |
///////////////////////////////////////////////////////////////////////////////
|
||
|
// 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(){};
|
||
|
|