Remove WebSocket datastore - move directly to WebSocketManager

This commit is contained in:
Amish Shah
2016-08-19 21:37:23 +01:00
parent bd50e3c0a5
commit ad8b4c7698
5 changed files with 18 additions and 24 deletions

View File

@@ -1,12 +0,0 @@
const AbstractDataStore = require('./AbstractDataStore');
class WebSocketManagerDataStore extends AbstractDataStore {
constructor() {
super();
this.sessionID = null;
this.sequence = -1;
this.gateway = null;
}
}
module.exports = WebSocketManagerDataStore;