UNPKG

gitdig

Version:

A simple git tool for documenting and discovering multi-repo projects

17 lines (15 loc) 397 B
const repos = require('./repos') /** * Execute the collect command. * * @param {Object} config Configuration parameters */ exports.execute = function(config) { repos.getRepos(config, (err, repos) => { if (err) { console.log('ERROR: ', err) } else { console.log('The snapshot is successfully created.') } }) }