UNPKG

228 BJavaScriptView Raw
1// Sample task
2
3module.exports = function(app) {
4 /*
5 app.cli()
6 .command('db-seed')
7 .description('Pre-fills the database with data')
8 .action(function() {
9
10 app.load();
11 // Do things here
12
13 });
14 */
15};