UNPKG

ep_rocketchat

Version:
11 lines (9 loc) 235 B
'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;