mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-25 23:36:17 +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);
|
||
|
};
|