prestige
Version:
Server designed to connect distributed applications via their REST API
21 lines (17 loc) • 529 B
JavaScript
/*var nconf = require('nconf');
(function(){
"use strict";
module.exports = function(config, namespace, project, data, key, callback) {
if (config && namespace && project && key) {
var gitlab = require('gitlab')({
url: config.gitlab.url,
token: config.gitlab.token
});
} else if (config === undefined) {
callback(null, "MISSING: config/prestige.json, please refer to readme for help");
} else {
callback(null, "MISSING: config, projectID, or key!");
}
};
})();
*/