mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
13 lines
240 B
JavaScript
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);
|
|
|
|
}; |