2015-03-19 05:08:23 +00:00
|
|
|
/* jslint node: true */
|
|
|
|
'use strict';
|
|
|
|
|
2015-10-22 04:51:35 +00:00
|
|
|
var PluginModule = require('./plugin_module.js').PluginModule;
|
2015-03-19 05:08:23 +00:00
|
|
|
|
|
|
|
exports.ServerModule = ServerModule;
|
|
|
|
|
|
|
|
function ServerModule() {
|
2018-06-22 05:15:04 +00:00
|
|
|
PluginModule.call(this);
|
2015-03-19 05:08:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
require('util').inherits(ServerModule, PluginModule);
|
|
|
|
|
|
|
|
ServerModule.prototype.createServer = function() {
|
2015-10-22 04:51:35 +00:00
|
|
|
};
|