Skip to content
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
9 lines (8 sloc) 201 Bytes
'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;
}
};
You can’t perform that action at this time.