nci/lib/command/index.js

11 lines
201 B
JavaScript
Raw Normal View History

2014-12-02 21:21:07 +00:00
'use strict';
var typesHash = {
'shell': require('./shell').ShellCommand
};
exports.createCommand = function(params) {
var Constructor = typesHash[params.type];
return new Constructor(params);
};