Skip to content

Instantly share code, notes, and snippets.

@mikeuduc
Created May 29, 2015 17:40
Show Gist options
  • Save mikeuduc/f6fa6a7687cd8adebf9a to your computer and use it in GitHub Desktop.
Save mikeuduc/f6fa6a7687cd8adebf9a to your computer and use it in GitHub Desktop.
var stats = require('../modules/stats');
function weeklyStats(cb){
stats.sendWeeklyStats(function(){
cb();
});
}
weeklyStats(function(){
console.log("Done.");
process.exit();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment