mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-11 09:05:07 +00:00
7 lines
150 B
JavaScript
7 lines
150 B
JavaScript
'use strict';
|
|
|
|
exports.createCommand = function(params) {
|
|
var Constructor = require('./' + params.type).Command;
|
|
return new Constructor(params);
|
|
};
|