2015-09-22 21:27:34 +10:00

14 lines
268 B
JavaScript

/**
* AWS Module: Action: Modularized Code
*/
// Export For Lambda Handler
module.exports.run = function(event, context, cb) {
return cb(null, action());
};
// Your Code
var action = function() {
return {message: 'Your JAWS lambda executed successfully!'};
};