mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-11 20:05:08 +00:00
11 lines
201 B
JavaScript
11 lines
201 B
JavaScript
'use strict';
|
|
|
|
var typesHash = {
|
|
'shell': require('./shell').ShellCommand
|
|
};
|
|
|
|
exports.createCommand = function(params) {
|
|
var Constructor = typesHash[params.type];
|
|
return new Constructor(params);
|
|
};
|