serverless/app/lambda/lambda_one.js
Austen Collins 99880fef4d changes
2015-04-20 23:18:04 -07:00

13 lines
240 B
JavaScript

/**
* AWS Lambda Task
* - Put tasks in here that take a while to process
* - Then will be uploaded to AWS Lambda and executed there
*/
module.exports = function(a, b, callback) {
var answer = a + b;
return callback(answer);
};