UNPKG
ep_rocketchat
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
Integrating rocketchat with Etherpad
github.com/samirsayyad/ep_rocketchat
samirsayyad/ep_rocketchat
ep_rocketchat
/
rocketChat
/
api
/
notify.js
11 lines
(9 loc)
•
235 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
class
Notify
{
constructor
(
client
) {
this
.
client
= client;
this
.
user
=
new
(
require
(
'./subscription/user'
))(client);
this
.
room
=
new
(
require
(
'./subscription/room'
))(client); } }
module
.
exports
=
Notify
;