1 | var events = require('./lib/clients/events');
|
2 |
|
3 | module.exports = {
|
4 | WebClient: require('./lib/clients/web/client'),
|
5 | RtmClient: require('./lib/clients/rtm/client'),
|
6 | LegacyRtmClient: require('./lib/clients/default/legacy-rtm'),
|
7 | CLIENT_EVENTS: {
|
8 | WEB: events.CLIENT_EVENTS.WEB,
|
9 | RTM: events.CLIENT_EVENTS.RTM,
|
10 | },
|
11 | RTM_EVENTS: events.RTM_EVENTS,
|
12 | RTM_MESSAGE_SUBTYPES: events.RTM_MESSAGE_SUBTYPES,
|
13 | MemoryDataStore: require('./lib/data-store/memory-data-store'),
|
14 | };
|