2015-09-17 11:04:50 -05:00

13 lines
270 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: 'You\'re JAWS lambda executed successfully!'};
};