2
0
Fork 0
tcrud/lib/default/default-tserver.js

14 lines
321 B
JavaScript
Raw Normal View History

2017-06-10 14:53:29 +00:00
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';
};
};
})();