blob: e22bd2a058243aa584003c309f279459d3125863 [file] [log] [blame]
'use strict';
// base class that users should extend if they are making their own
// server implementation
module.exports = class BaseServer {
constructor(server) {
this.server = server;
}
};