Skip to content

Commit

Permalink
return scraped data instead of event in lambda #128
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonic committed Mar 30, 2024
1 parent 86d362e commit 3e818c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ exports.handler = function handler (event, context, callback) {
console.log(' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ')
console.log(data);

return callback(null, event);
return callback(null, data);
});
}

0 comments on commit 3e818c3

Please sign in to comment.