mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-13 08:01:50 +02:00
New Features
- added notifications - added toggle switches - added delete feature - added email verification
This commit is contained in:
parent
e61ef151f6
commit
1b20a11bba
91 changed files with 6859 additions and 2756 deletions
10
communicator.js
Normal file
10
communicator.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
var util = require('util');
|
||||
var EventEmitter = require('events').EventEmitter;
|
||||
|
||||
function Communicator(){
|
||||
EventEmitter.call(this);
|
||||
}
|
||||
|
||||
util.inherits(Communicator, EventEmitter);
|
||||
|
||||
module.exports = new Communicator();
|
Loading…
Add table
Add a link
Reference in a new issue