Extending ionic tool to have multiple task support.

This commit is contained in:
Max Lynch
2013-09-08 21:52:33 -05:00
parent 6c89a3d68e
commit 6ae11762f0
4 changed files with 73 additions and 21 deletions

View File

@ -0,0 +1,9 @@
var IonicTask = function() {
};
IonicTask.prototype = {
run: function(ionic) {
}
};
exports.IonicTask = IonicTask;