Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

BaseServer.js 201B

123456789
  1. 'use strict';
  2. // base class that users should extend if they are making their own
  3. // server implementation
  4. module.exports = class BaseServer {
  5. constructor(server) {
  6. this.server = server;
  7. }
  8. };