-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.js
41 lines (39 loc) · 1.6 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import Util from './ezy-util';
import Entity from './ezy-entities';
import Const from './ezy-constants';
import Config from './ezy-configs';
import EventHandler from './ezy-event-handlers';
import DataHandler from './ezy-data-handlers';
import EzyClient from './ezy-client';
import EzyClients from './ezy-clients';
const Ezy = {
Guid: Util.EzyGuid,
Logger: Util.EzyLogger,
App: Entity.EzyApp,
User: Entity.EzyUser,
Zone: Entity.EzyZone,
Command: Const.EzyCommand,
Commands: Const.EzyCommands,
DisconnectReason: Const.EzyDisconnectReason,
DisconnectReasonNames: Const.EzyDisconnectReasonNames,
ConnectionFailedReason: Const.EzyConnectionFailedReason,
ConnectionStatus: Const.EzyConnectionStatus,
EventType: Const.EzyEventType,
ClientConfig: Config.EzyClientConfig,
Config: Config.EzyClientConfig,
ConnectionSuccessHandler: EventHandler.EzyConnectionSuccessHandler,
ConnectionFailureHandler: EventHandler.EzyConnectionFailureHandler,
DisconnectionHandler: EventHandler.EzyDisconnectionHandler,
HandshakeHandler: DataHandler.EzyHandshakeHandler,
LoginSuccessHandler: DataHandler.EzyLoginSuccessHandler,
LoginErrorHandler: DataHandler.EzyLoginErrorHandler,
AppAccessHandler: DataHandler.EzyAppAccessHandler,
AppExitHandler: DataHandler.EzyAppExitHandler,
AppResponseHandler: DataHandler.EzyAppResponseHandler,
PluginInfoHandler: DataHandler.EzyPluginInfoHandler,
PluginResponseHandler: DataHandler.EzyPluginResponseHandler,
PongHandler: DataHandler.EzyPongHandler,
Client: EzyClient,
Clients: EzyClients,
};
export default Ezy;