UNPKG

debug-server-next

Version:

Dev server for hippy-core.

11 lines (9 loc) 224 B
'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; this.clients = []; } };