nci/resources/index.js

10 lines
176 B
JavaScript
Raw Normal View History

2015-04-10 19:23:52 +00:00
'use strict';
var _ = require('underscore');
module.exports = function(data) {
_(['builds', 'projects']).each(function(resource) {
require('./' + resource)(data);
});
};