mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-12 05:25:09 +00:00
9 lines
182 B
JavaScript
9 lines
182 B
JavaScript
'use strict';
|
|
|
|
var path = require('path');
|
|
|
|
exports.createScm = function(config) {
|
|
var Constructor = require(path.join(__dirname, config.type));
|
|
return new Constructor(config);
|
|
};
|