14 lines
321 B
JavaScript
14 lines
321 B
JavaScript
|
|
module.exports = (function () {
|
|
|
|
return function DefaultTServerPlugin() {
|
|
|
|
this.configPlugin = function (ctx) {
|
|
ctx.key = 'defaultTServer';
|
|
ctx.description = 'Adds the basic data and structure of the tserver.';
|
|
ctx.localDir = __dirname;
|
|
ctx.localConfigTemplate = 'default-tserver.json';
|
|
};
|
|
};
|
|
})();
|