Skip to content

Instantly share code, notes, and snippets.

@shoguevara
Created December 7, 2022 20:20
Show Gist options
  • Save shoguevara/32471f9bb64af9bba9e360bf93bc97a0 to your computer and use it in GitHub Desktop.
Save shoguevara/32471f9bb64af9bba9e360bf93bc97a0 to your computer and use it in GitHub Desktop.
YDS messages to JS
exports.handler= async function (data, context) {
console.log(JSON.stringify(context));
console.log(JSON.stringify(data));
return {
'statusCode': 200,
'body': data,
'headers': {"Content-Type":"application/x-octet-stream"}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment