mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-11 19:45:09 +00:00
11 lines
205 B
JavaScript
11 lines
205 B
JavaScript
'use strict';
|
|
|
|
var typesHash = {
|
|
'mercurial': require('./mercurial').MercurialScm
|
|
};
|
|
|
|
exports.createScm = function(params) {
|
|
var Constructor = typesHash[params.type];
|
|
return new Constructor(params);
|
|
};
|