2015-03-19 05:08:23 +00:00
|
|
|
/* jslint node: true */
|
|
|
|
'use strict';
|
|
|
|
|
2018-12-27 09:19:26 +00:00
|
|
|
const PluginModule = require('./plugin_module.js').PluginModule;
|
2015-03-19 05:08:23 +00:00
|
|
|
|
2018-12-27 09:19:26 +00:00
|
|
|
exports.ServerModule = class ServerModule extends PluginModule {
|
|
|
|
constructor(options) {
|
|
|
|
super(options);
|
|
|
|
}
|
2015-03-19 05:08:23 +00:00
|
|
|
|
2018-12-27 09:19:26 +00:00
|
|
|
createServer(cb) {
|
|
|
|
return cb(null);
|
|
|
|
}
|
2015-03-19 05:08:23 +00:00
|
|
|
|
2018-12-27 09:19:26 +00:00
|
|
|
listen(cb) {
|
|
|
|
return cb(null);
|
|
|
|
}
|
2015-10-22 04:51:35 +00:00
|
|
|
};
|